交换二叉树中所有结点左右孩子的递归算法.doc
#include #include typedef int DataType; typedef struct Node { DataType data; struct Node *LChild; struct Node *RChild; }BitNode*BitTree; void CreatBiTree(BitTree *bt) { char ch; ch
下载地址
用户评论