数据结构之二叉树的基本操作(C++)
#include<iostream>using namespace std;typedef struct bstnode{ int data; bstnode *lchild,*rchild;}bstnode,*linkbst; class bst{ public: bstnode *t; bst(){t=NULL;} void ino...