摘要:
TASK 2 TASK2.cpp 点击查看代码 #include <iostream> #include <fstream> #include <vector> #include "Person.hpp" int main() { using namespace std; vector<Person 阅读全文
2021年12月15日
2021年11月26日
摘要:
实验任务二 源码 #include <iostream> #include <typeinfo> // definitation of Graph class Graph { public: void draw() { std::cout << "Graph::draw() : just as an 阅读全文
2021年11月13日
摘要:
## 在子函数中给main函数指针分配内存的方法 错误的方法: ```cpp#include<stdio.h>#include<stdlib.h>#include<string.h> void fen_pei(char *p,int n){p=(char *)malloc(n*sizeof(char 阅读全文
摘要:
## 从??中读取的数据无效/写入到??时缓存区溢出 今天在写数据结构哈夫曼编码作业时,跳出了两个这样的错误 * 从“HT”中读取的数据无效: 可读大小为“((m+1))*sizeof(HTNode)”个字节,但可能读取了“80”个字节。* 写入到“HT”时缓冲区溢出: 可写大小为“((m+1))* 阅读全文
摘要:
一个简单的延时函数实现 在单片机中一般使用的delay()函数是通过采用for或者while循环,让计算机跑无用的代码,从而达到延时的目的,但这有一个坏处,控制不精确,而且PC比单片机的运算效率高很多,难以量化停止的时间。 经过查阅资料后,发现了一个简易的延时函数。 #include <ctime> 阅读全文
2021年11月9日
摘要:
第三章需求分析 需求分析的任务 综合需求(由整体) 系统的综合需求分为功能需求、性能需求、可靠性可用性需求、出错处理需求、接口需求、约束、逆向需求、将来可能的需求。 功能需求 指系统必须提供的服务,应该包含所有系统必须完成的功能, 性能需求 指系统必须满足的时间与空间上的约束,通常包含响应时间、存储 阅读全文
2021年11月5日
摘要:
task4 Vector_int.hpp #pragma once #include <iostream> class vector_int { public: vector_int(int); vector_int(int, int); vector_int(const vector_int&); 阅读全文
2021年10月29日
摘要:
Task 5 info.hpp #ifndef _info.hpp #include <iostream> using namespace std; class info { public: info(string new_nickname="name", string new_contact="c 阅读全文
2021年10月25日
摘要:
#ifndef _Complex #include <iostream> #include <cmath> class Complex { public: friend Complex add(const Complex c1, const Complex c2); friend bool is_e 阅读全文