2012年12月5日
摘要: d 阅读全文
posted @ 2012-12-05 16:33 RedLight 阅读(316) 评论(0) 推荐(0) 编辑
摘要: #include<Windows.h>#include <iostream>#include <queue>using namespace std;typedef struct BinTNode { int data; BinTNode* lBinTNode; BinTNode* rBinTNode;}BinTNode,* BinTree;//BinTNode是定义的类型,而*BinTree是定义指向此结构体的指针int initArray[]={6,4,10,5,0,0,0,8,0,0,12,16,0,0,14,0,0};int i=0;void Crea 阅读全文
posted @ 2012-12-05 15:42 RedLight 阅读(193) 评论(0) 推荐(0) 编辑