关于二叉排序树 BST
摘要:
1 #include 2 #include 3 4 typedef struct node 5 { 6 double w; 7 struct node *l,*r; 8 }*Node; 9 10 void Build(Node &rt,double a)//建树 11 { 12 if(rt==NULL) 13 { ... 阅读全文
posted @ 2016-11-26 21:05 HelloWorld!--By-MJY 阅读(272) 评论(0) 推荐(0) 编辑