二叉排序数

#include<stdio.h> typedef struct node {int key; struct node*lchild; struct node*rchild; }bsnodetype;

腾讯文库二叉排序数