二叉樹的左右子樹交換的算法實現?
使用遍歷,每遍歷到一個結點,就交換其左右子樹voidSwap(bnode*root){//使用后序遍歷bnode*temp;if(root!=NULL){Swap(root->lchild):Swap(root->rchild);temp=root->lchild;root->lchild=root->rchild;root->rchild=temp;}}
上一篇jap是什么格式
二叉樹的左右子樹交換的算法實現?
使用遍歷,每遍歷到一個結點,就交換其左右子樹voidSwap(bnode*root){//使用后序遍歷bnode*temp;if(root!=NULL){Swap(root->lchild):Swap(root->rchild);temp=root->lchild;root->lchild=root->rchild;root->rchild=temp;}}