二叉排序数
#include<stdio.h> typedef struct node {int key; struct node*lchild; struct node*rchild; }bsnodetype;