【算法与数据结构】二叉树的 先序 遍历
摘要:1、二叉树的构造 二叉树的构造采用递归方式//二叉链表方式存储的二叉树结构typedef struct _tagBinaryTreeNode{ unsigned char value; struct _tagBinaryTreeNode* lchind; struct _...
阅读全文
posted @ 2014-04-25 01:20
posted @ 2014-04-25 01:20
posted @ 2014-04-22 14:07
posted @ 2014-04-22 00:30
posted @ 2014-04-21 22:22
posted @ 2014-04-20 20:31
posted @ 2014-04-17 14:21
posted @ 2014-04-17 01:21