C
小新JS
喜欢编程,代码的世界可以是精彩纷呈的,我愿意一直陪伴着你
展开
-
C语言实现顺序栈和基本操作
#define StackSize 100 //栈空间 typedef char DataType; //数据类型 typedef struct { DataType data[StackSize]; int top; //栈顶指针 }SeqStack; SeqStack S; void InitStack(SeqStack *S){ //置空栈 S->t...原创 2019-08-02 16:42:17 · 212 阅读 · 0 评论 -
C语言实现二叉链表的创建和遍历
typedef char DataType; typedef struct node{ //二叉链表节点 DataType data; struct node *lchild, *rchild; }BinTNode; typedef BinTNode *BinTree; BinTNode * CreateTree(char *str){ //建立二叉链表 BinTN...原创 2019-08-06 14:02:15 · 2197 阅读 · 0 评论