摘要: #include<iostream>using namespace std;struct BTreeNode{ int data; struct BTreeNode *lchild,*rchild;};void PostOrder(BTreeNode *bt) { if(bt!=NULL) { PostOrder(bt->lchild); PostOrder(bt->rchild); printf("%d\n",bt->data); } } void PreInCreate(BTreeNode *&root,int pre... 阅读全文
posted @ 2013-01-02 19:11 代码改变未来 阅读(225) 评论(0) 推荐(0) 编辑