二叉树实验左右子树交换
typedef struct binode //定义二叉树 { int data; //数据域 struct binode *lchild,*rchild; //左孩子、右孩子 }binode,*bitree; ① 主函数main() ② 先序遍历二叉树建立函数creat_bt() ③ 中序遍历二叉树函数inorder() ④ 左右子树交换函数 exchange()
typedef struct binode //定义二叉树 { int data; //数据域 struct binode *lchild,*rchild; //左孩子、右孩子 }binode,*bitree; ① 主函数main() ② 先序遍历二叉树建立函数creat_bt() ③ 中序遍历二叉树函数inorder() ④ 左右子树交换函数 exchange()