摘要:
#include using namespace std; typedef int daTp;//datatype typedef struct BTNode *position; typedef position BTree; const int MAXN=30; struct BTNode { daTp data; position lChild,rChild; }; BT... 阅读全文
posted @ 2017-03-27 20:27
theFresh
阅读(490)
评论(0)
推荐(0)
