構造二叉樹,打印二叉樹圖形

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
相關文章
相關標籤/搜索