题目1184:二叉树遍历 (二)

2014-11-24 07:35:55 · 作者: · 浏览: 2
reateBiTree(T,index,len);
//中序遍历
InOrder(T);
printf("\n");
}
return 0;
}