洛谷P1087FBI樹題解--zhengjun

題面傳送門html 思路 直接 d f s dfs dfs,注意要輸出後序,即爲先左子樹再右子樹最後根c++ 代碼 #include<bits/stdc++.h> using namespace std; int n; string a; void dfs(int l,int r){ if(l<r){ dfs(l,(l+r)>>1); dfs(((l+r)>>1)+1,r); }
相關文章
相關標籤/搜索