构造二叉树,打印二叉树图形

1 #include <iostream> 2 #include <cmath> 3 using namespace std; 4 struct node 5 { 6 char c; 7 int n; 8 int level; 9 struct node* lc; 10 struct node* rc; 11 }; 12
相关文章
相关标签/搜索