摘要: 一.二叉排序树的结点类型 typedef struct node{ KeyType key; struct node lchild, rchild; }BSTNode; typedef int KeyType; 二.SearchBST(T, key) 1.伪代码 SearchBST(BSTNode 阅读全文
posted @ 2020-04-19 21:52 皮皮皮(童浚) 阅读(112) 评论(0) 推荐(0) 编辑