摘要: #include "stdio.h"#include "malloc.h"typedef struct node { int key; struct node *lchild, *rchild; }BSTNode, *BSTree;void InsertBST(BSTree *bst, int ... 阅读全文
posted @ 2016-10-31 20:35 Tovi 阅读(336) 评论(0) 推荐(0) 编辑