摘要: 1 #include 2 #include 3 4 typedef struct BiNode{ 5 char data; 6 struct BiNode* LChild; 7 struct BiNode* RChild; 8 }BiNode,*BiT... 阅读全文
posted @ 2012-10-10 21:04 ZH奶酪 阅读(467) 评论(0) 推荐(0) 编辑