摘要: 二叉排序树是一种左子树的值小于根,而右子树的值大于根的的一棵树,通过中序遍历可以得到一个有序的序列= =#include#include#include#include#includeusing namespace std;typedef struct node{ int data; s... 阅读全文
posted @ 2015-09-15 21:12 __NaCl 阅读(170) 评论(0) 推荐(0) 编辑