摘要: 二叉链表的C语言描述基本运算的算法——建立二叉链表、先序遍历二叉树、中序遍历二叉树、后序遍历二叉树、后序遍历求二叉树深度#include#includeusing namespace std;class Tree{private: struct Node { char da... 阅读全文
posted @ 2014-06-09 10:47 DuskL 阅读(405) 评论(0) 推荐(0) 编辑