首页 > 代码库 > SDUTOJ 2482 二叉排序树

SDUTOJ 2482 二叉排序树

#include<iostream>
#include<string.h>
using namespace std;
char c[100],d[100];
int o=0,e=0;
typedef struct bitnode
{
	char data;
	struct bitnode *lchild,*rchild;
}bitnode,*bitree;
void insert(bitree &t1,char key)
{
	if(t1==NULL)
	{
		t1=new bitnode;
		t1->lchild=t1->rchild=NULL;
		t1->data=http://www.mamicode.com/key;>

SDUTOJ 2482 二叉排序树