二叉树基本操作:二叉树的基本操作

#include stdio.h #includestdlib.h #define Maxsize 100 #define NULL 0 typedef char Elemtype; typedef struct node{ Elemtype data; struct node *lchild,*rchild; }BTNode; typedef BTNode *BinTree; //in... [阅读全文]
1 共1条 分1页