05 2020 档案
摘要:#include<stdio.h> #include<stdlib.h> typedef char VertexData; #define maxsize 20 typedef struct { VertexData vex[maxsize];//顶点表 int arc[maxsize][maxsi
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> typedef struct Node { int data; struct Node *next; }linkNode; typedef struct { linkNode *front; linkNode *rear;
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> #include <conio.h> typedef char TElemType; typedef struct Node { TElemType data; struct Node *lchild, *rchild;
阅读全文
摘要:前端部分 周期规划部分 周期规划对于我来说是比较难的,俗话说“计划赶不上变化”,我也不知道我是否能按规划的那样完成我的学习规划,但是我会尽量跟着规划走。 数据结构部分 本学期我们专业所学的内容就是数据结构,我的学习时间可以说是随机安排,只能规定本周所要学习的量达到一个什么程度,所以本学期的安排是随机
阅读全文
摘要:#include <stdio.h> #include <malloc.h> #include <stdlib.h> #define MAX 100 #define DataType char typedef struct { DataType elem[MAX]; int top; }SeqSta
阅读全文

浙公网安备 33010602011771号