摘要: #include<iostream>using namespace std;typedef int KeyType ;typedef struct node{ KeyType key;//关键字 struct node* rchild,*lchild;}BSTNode; 1. 编写SearchBST 阅读全文
posted @ 2020-04-19 21:45 茅志雄 阅读(171) 评论(0) 推荐(0) 编辑