1099. Build A Binary Search Tree (30)

一、先遞歸計算每個節點兩邊孩子的數量 二、而後對給的序列排序 三、而後根據兩邊孩子的數量就能夠肯定這個節點在序列中的位置,而後遞歸的肯定就行了 四、最後層序遍歷一遍node #include <iostream> #include <algorithm> #include <queue> #define SIZE 100 using namespace std; int treetable[S
相關文章
相關標籤/搜索