patA1020 根據postorder and inorder 輸出level order

#include <iostream>#include <stdio.h> #include <queue> using namespace std; struct node{ int data; node* lchild; node* rchild; };  const int maxn=100; int n; int post[maxn],in[maxn]; node* create(int
相關文章
相關標籤/搜索