摘要: 前序遍历:根左右 中序遍历:左根右 后序遍历:左右根 #include int find(char c,char A[],int s,int e){ /* 找出中序中根的位置。 */ int i; for(i=s;iin_e){ return ; } ... 阅读全文
posted @ 2012-09-21 11:36 HappyCorn 阅读(2725) 评论(0) 推荐(0)