BST二叉查找树的实现与操作
摘要:
教学视频地址原文来自猎豹网校#include #include typedef struct Node{ int data; struct Node *lchild; struct Node *rchild;}BiTreeNode,*BiTree;BiTree BSTSearch(BiTree T,... 阅读全文
posted @ 2013-05-14 19:25 果冻虾仁 阅读(120) 评论(0) 推荐(0) 编辑