摘要: typedef struct node { int data; struct node *lchild, *rchild; }bitnode, *bitree; bool search(bitree T, int x, bitree f, bitree *p){ // 查找应该插入的位置 if (!T) { *p = f; return ... 阅读全文
posted @ 2018-01-17 10:32 楼主好菜啊 阅读(195) 评论(0) 推荐(0)
摘要: A binary tree is a finite set of vertices that is either empty or consists of a root r and two disjoint binary trees called the left and right subtree 阅读全文
posted @ 2018-01-17 10:27 楼主好菜啊 阅读(227) 评论(0) 推荐(0)