标签:
void preOrder(BinTree *root) //递归前序遍历 { if(root!=NULL) { cout<<root->data<<" "; preOrder1(root->lchild); preOrder1(root->rchild); } } void inOrder1(BinTree *root) //递归中序遍历 { if(root!=NULL) { inOrder1(root->lchild); cout<<root->data<<" "; inOrder1(root->rchild); } }
参考:http://www.cnblogs.com/dolphin0520/archive/2011/08/25/2153720.html
标签:
原文地址:http://www.cnblogs.com/JackKing-defier/p/4887621.html