Data Struct
SZTLLDGZ
这个作者很懒,什么都没留下…
展开
-
N1:Stack Queue DFS BFS
#include #include #include using namespace std; #define MAXVEX 100 #define INFINITY 65535 typedef char VertexType; typedef int EdgeType; typedef int Boolean; Boolean visted[MAXVEX]翻译 2016-03-05 15:22:32 · 457 阅读 · 0 评论 -
树的存储结构
//孩子双亲表示法 #define MAX_TREE_SIZE 100 typedf char ElemType; typedef struct CTNode { int child; struct CTNode *next; }*ChildPtr; typedef struct { ElemType data; int par翻译 2016-03-05 20:28:32 · 390 阅读 · 0 评论