2019年4月25日

摘要: 1.代码地址 https://www.cnblogs.com/19940630naxubo/p/10768219.html 2.代码审查表 功能模块名称 3.代码缺点 无故空行 4.总结 通过这次代码审查,我初步领悟到了结对编程的特点之代码审查。读别人的代码,不仅是一个相互学习的过程,更是一个相互了 阅读全文
posted @ 2019-04-25 15:28 无敌小那 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; # define Maxsize 100 struct Node // 以表的形式存储的树结点 { char data; int parent; int lchild; int rchild; }; ... 阅读全文
posted @ 2019-04-25 14:20 无敌小那 阅读(108) 评论(0) 推荐(0) 编辑
摘要: #include #include typedef struct term{//项的表示 float coef;//系数 int expn;//指数 struct term *next,*pre; }*ElemType; void createPolyn(ElemType &polyn)//创建一个多项式链表 { polyn=(ElemType)malloc(... 阅读全文
posted @ 2019-04-25 12:57 无敌小那 阅读(95) 评论(0) 推荐(0) 编辑

导航