数据结构-1 二叉搜索树的操作集
摘要:
BinTree Insert( BinTree BST, ElementType X ){ if(BST==NULL){ BST = (BinTree)malloc(sizeof(struct TNode)); BST->Left = NULL; BST->Right = NULL; BST->Da 阅读全文
posted @ 2020-03-30 21:04 chenxi16 阅读(307) 评论(0) 推荐(0) 编辑