Kth Smallest Element In Tree
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
void dfs(TreeNode* A, vector<int>& now) { if(A == NULL) return; now.push_back(A->val); dfs(A->left, now); dfs(A->right, now); } int Solution::kthsmallest(TreeNode* A, int B) { vector<int> now; dfs(A,now); sort(begin(now),end(now)); return now[B-1]; }
|