文章
82
粉丝
344
获赞
28
访问
696.7k
#include <iostream>
#include <string.h>
using namespace std;
typedef struct node{
int data;
struct node *lchild;
struct node *rchild;
}BiNode,*BiTree;
void insert(BiTree&T,int x){
BiTree p=T;
BiTree pre=p;
while(p){
if(p->data>x){
pre=p;
p=p->lchild;
}
else if(p->data<x){
pre=p;
p=p->rchild;
}
else {
return ;
 ...
登录后发布评论
暂无评论,来抢沙发