2016年8月1日

数据结构 树的遍历(递归遍历练习)

摘要: //树的遍历--练习 #include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct _TreeNode{ //数据域 char data; //指针域 struct _TreeNode * leftchild;//左孩子 阅读全文

posted @ 2016-08-01 15:39 寒魔影 阅读(503) 评论(0) 推荐(0)

数据结构 树的遍历(递归遍历)

摘要: //树的遍历--递归遍历 #include #include #include typedef struct _TreeNode{ //数据域 char data; //指针域 struct _TreeNode * leftchild;//左孩子指针 struct _TreeNode * rightchild;//右孩子指针 }TreeNode, *T... 阅读全文

posted @ 2016-08-01 10:41 寒魔影 阅读(637) 评论(0) 推荐(0)

导航