大二数据结构书的题
W_KaKa
这个作者很懒,什么都没留下…
展开
-
二叉树的先序中序后序以及递归算法求高度和结点数目
#include "stdio.h"//定义结点typedef struct Node{ char data; struct Node * LChild; struct Node * RChild;}BiTNode,*BiTree;//创建树void CreateBiTree(BiTree * bt){ char ch; ch = getch原创 2017-11-26 16:14:06 · 837 阅读 · 0 评论 -
数据结构--链队列
/*队列没完全看懂*/#include #include #define Datatype int//定义节点结构typedef struct node{ Datatype data; struct node *next;}QueueNode;//定义头节点typedef struct{ QueueNode *front; QueueNode *re原创 2017-11-28 22:39:12 · 321 阅读 · 0 评论 -
数据结构的链栈
# include # include typedef char NodeData;//链栈typedef struct Node{ NodeData data; struct Node *next;}StackNode;typedef struct{ StackNode *top;}LinkStack;/*置栈空*/void initStack(L原创 2017-11-28 22:38:26 · 348 阅读 · 0 评论