摘要:
View Code 1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef int DataType; 4 5 typedef struct BiThrNode{ 6 DataType data; 7 struct BiThrNode *lchild; 8 struct BiThrNode *rchild; 9 unsigned ltag;10 unsigned rtag;11 }BiThrNode,*BiThrTree;12 13 BiThrTree pre;14 15 void InThreading... 阅读全文
posted @ 2012-11-22 10:48 皇星客栈--Linux 阅读(242) 评论(0) 推荐(0) 编辑