上一页 1 ··· 168 169 170 171 172 173 174 175 176 ··· 207 下一页

2011年7月28日

二叉树的创建及各种遍历

摘要: #include"stdio.h"#include"string.h"#include<stdlib.h>#include<malloc.h>//#include<system>#define Max 20 /*结点的最大个数*/typedef struct node{ char data; struct node *lchild,*rchild;}BinTNode; /*自定义二叉树的结点类型*/typedef BinTNode *BinTree; /*定义二叉树的指针*/int NodeNum,leaf; /*No 阅读全文

posted @ 2011-07-28 11:46 原来... 阅读(560) 评论(0) 推荐(0) 编辑

上一页 1 ··· 168 169 170 171 172 173 174 175 176 ··· 207 下一页

导航