数据结构——二叉树交换左右

二叉树交换左右子树 #include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct Node{ //二叉树的链式存储结点 char data; struct Node *Lchild; struct Node *Rchild; }BiTNode,*BiTree; void CreateBiTre
相关文章
相关标签/搜索