#include using namespace std; const int MAXSIZE = 100 ; template struct BiNode //二叉链表结点 { T data;//数据域 BiNode