-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path102.binary-tree-level-order-traversal.cpp
More file actions
48 lines (42 loc) · 1.08 KB
/
102.binary-tree-level-order-traversal.cpp
File metadata and controls
48 lines (42 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* @lc app=leetcode id=102 lang=cpp
*
* [102] Binary Tree Level Order Traversal
*/
// @lc code=start
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
vector<vector<int>> v;
map<int,vector<int>> mp;
void finalResult(TreeNode* root,int height){
if(root==nullptr){
return ;
}
mp[height].push_back(root->val);
finalResult(root->left,height+1);
finalResult(root->right,height+1);
}
vector<vector<int>> levelOrder(TreeNode* root) {
finalResult(root,0);
for(auto it : mp){
vector<int> temp;
for(auto it1 : it.second){
temp.push_back(it1);
}
v.push_back(temp);
}
return v;
}
};
// @lc code=end