
数据结构
ckangle
这个作者很懒,什么都没留下…
展开
-
数据结构的学习网站
http://www.nowamagic.net/librarys/veda/cate/DataStructures转载 2013-07-29 09:39:44 · 2002 阅读 · 0 评论 -
C语言实现二叉树的遍历
第一种:#include #include //#include //#include typedef struct node{ char data; struct node *lchild,*rchild;}BiNode,*BiTree;BiTree CreatBiTree(){ char a; BiTree T; scanf("%c"转载 2013-08-01 09:36:01 · 790 阅读 · 0 评论 -
C语言实现单链表的初始化、创建、遍历等操作
编译环境:VC++6.0#include#includetypedef struct LNode{int data;struct LNode *next;}LNode,*LinkList;LinkList Init_LNode() //链表初始化{LNode *L;L = (LinkList)malloc(sizeof(LNode));if(L == NULL){printf("初始化失败!\原创 2013-07-29 10:22:02 · 21391 阅读 · 4 评论