摘要: 1 #include <stdio.h> 2 3 #define StackSize 100 4 #define OK 1 5 #define ERROR 0 6 #define TRUE 1 7 #define FALSE 0 8 9 typedef int ElemType; 10 typede 阅读全文
posted @ 2016-11-14 21:00 biu~biu~biu~ 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef int ElementType; 5 typedef struct Node { 6 ElementType data; 7 struct Node *next; 8 }Lnode,*Lin 阅读全文
posted @ 2016-11-14 20:58 biu~biu~biu~ 阅读(571) 评论(0) 推荐(0) 编辑
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 typedef char Elemtype; 5 6 typedef struct node 7 { 8 Elemtype data; 9 struct node *next; 10 }Lnode,*Linkl 阅读全文
posted @ 2016-11-14 20:56 biu~biu~biu~ 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 #define OVERFLOW 0 5 typedef char Elemtype; 6 typedef struct TreeNode 7 { 8 Elemtype data; 9 struct TreeN 阅读全文
posted @ 2016-11-14 20:49 biu~biu~biu~ 阅读(220) 评论(0) 推荐(0) 编辑