摘要: 一丶团队成员及任务分配 团队成员: 网络1811 简达亮 201821123019(组长) 网络1812 苏雨 201821123048(组员) 网络1811 罗赐 201821123022(组员) 任务分配: 二、项目git地址 https://gitee.com/luoci0213/Studen 阅读全文
posted @ 2020-01-08 19:37 罗小赐 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <malloc.h>using namespace std;typedef int ElementType; typedef struct tree{ char data; struct tree *lchild,*rchild;}Tree;v 阅读全文
posted @ 2019-04-30 08:52 罗小赐 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 1. void CreateListR(LinkList &L, int n)//尾插法建链表2. {3. L=new LNode;4. L->next=NULL;5. LNode* q=new LNode;6. q=L;7. for(int i=0;i<n;i++) //将新节点接在链表后面(进入 阅读全文
posted @ 2019-03-25 19:59 罗小赐 阅读(1072) 评论(0) 推荐(0) 编辑