摘要: 一.二叉排序树的结点类型 typedef int KeyType; typedef struct node { KeyType key; //关键字项 InfoType data; //其他数据域 struct node *lchild,*rchild; //左右孩子指针 } BSTNode; 二. 阅读全文
posted @ 2020-04-19 15:49 拒绝平庸* 阅读(302) 评论(1) 推荐(0) 编辑