2021年12月15日

摘要: TASK 2 TASK2.cpp 点击查看代码 #include <iostream> #include <fstream> #include <vector> #include "Person.hpp" int main() { using namespace std; vector<Person 阅读全文
posted @ 2021-12-15 18:05 viento123 阅读(100) 评论(3) 推荐(0) 编辑

2021年11月26日

摘要: 实验任务二 源码 #include <iostream> #include <typeinfo> // definitation of Graph class Graph { public: void draw() { std::cout << "Graph::draw() : just as an 阅读全文
posted @ 2021-11-26 13:53 viento123 阅读(21) 评论(3) 推荐(0) 编辑

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 阅读全文
posted @ 2021-11-13 21:31 viento123 阅读(217) 评论(0) 推荐(0) 编辑
 
摘要: ## 从??中读取的数据无效/写入到??时缓存区溢出 今天在写数据结构哈夫曼编码作业时,跳出了两个这样的错误 * 从“HT”中读取的数据无效: 可读大小为“((m+1))*sizeof(HTNode)”个字节,但可能读取了“80”个字节。* 写入到“HT”时缓冲区溢出: 可写大小为“((m+1))* 阅读全文
posted @ 2021-11-13 21:30 viento123 阅读(493) 评论(0) 推荐(0) 编辑
 
摘要: 一个简单的延时函数实现 在单片机中一般使用的delay()函数是通过采用for或者while循环,让计算机跑无用的代码,从而达到延时的目的,但这有一个坏处,控制不精确,而且PC比单片机的运算效率高很多,难以量化停止的时间。 经过查阅资料后,发现了一个简易的延时函数。 #include <ctime> 阅读全文
posted @ 2021-11-13 21:29 viento123 阅读(162) 评论(0) 推荐(0) 编辑

2021年11月9日

摘要: 第三章需求分析 需求分析的任务 综合需求(由整体) 系统的综合需求分为功能需求、性能需求、可靠性可用性需求、出错处理需求、接口需求、约束、逆向需求、将来可能的需求。 功能需求 指系统必须提供的服务,应该包含所有系统必须完成的功能, 性能需求 指系统必须满足的时间与空间上的约束,通常包含响应时间、存储 阅读全文
posted @ 2021-11-09 20:28 viento123 阅读(505) 评论(0) 推荐(0) 编辑

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&); 阅读全文
posted @ 2021-11-05 23:32 viento123 阅读(39) 评论(3) 推荐(0) 编辑

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 阅读全文
posted @ 2021-10-29 10:00 viento123 阅读(46) 评论(3) 推荐(0) 编辑

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 阅读全文
posted @ 2021-10-25 21:00 viento123 阅读(28) 评论(3) 推荐(0) 编辑