2014年4月25日

【算法与数据结构】二叉树的 先序 遍历

摘要: 1、二叉树的构造 二叉树的构造采用递归方式//二叉链表方式存储的二叉树结构typedef struct _tagBinaryTreeNode{ unsigned char value; struct _tagBinaryTreeNode* lchind; struct _... 阅读全文

posted @ 2014-04-25 01:20 崔好好 阅读(4136) 评论(0) 推荐(0)

导航