基于二叉链表的二叉树的遍历

#include<bits/stdc++.h> using namespace std; typedef struct node { char data; struct node *lc,*rc; } node,*link; int i,flag; void creat(link &L) { char ch; scanf("%c",&ch); i++;
相关文章
相关标签/搜索