Skip to content

Commit 1d698ce

Browse files
committed
push all
1 parent 286cc79 commit 1d698ce

9 files changed

+469
-0
lines changed

104.maximum-depth-of-binary-tree.cpp

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/*
2+
* @lc app=leetcode id=104 lang=cpp
3+
*
4+
* [104] Maximum Depth of Binary Tree
5+
*/
6+
7+
// @lc code=start
8+
/**
9+
* Definition for a binary tree node.
10+
* struct TreeNode {
11+
* int val;
12+
* TreeNode *left;
13+
* TreeNode *right;
14+
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
15+
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
16+
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
17+
* };
18+
*/
19+
class Solution {
20+
public:
21+
int maxDepth(TreeNode* root) {
22+
if (!root)return 0;
23+
queue<TreeNode*>q;
24+
q.push(root);
25+
int height = 0;
26+
while (!q.empty()) {
27+
height++;
28+
int size = q.size();
29+
for (int i = 0; i < size; i++) {
30+
if (q.front()->left)
31+
q.push(q.front()->left);
32+
if (q.front()->right)
33+
q.push(q.front()->right);
34+
q.pop();
35+
}
36+
}
37+
return height;
38+
}
39+
};
40+
// @lc code=end
41+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#include <vector>
2+
#include <queue>
3+
#include <algorithm>
4+
using namespace std;
5+
/*
6+
* @lc app=leetcode id=107 lang=cpp
7+
*
8+
* [107] Binary Tree Level Order Traversal II
9+
*/
10+
11+
// @lc code=start
12+
/**
13+
* Definition for a binary tree node.
14+
* struct TreeNode {
15+
* int val;
16+
* TreeNode *left;
17+
* TreeNode *right;
18+
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
19+
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
20+
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
21+
* };
22+
*/
23+
class Solution {
24+
public:
25+
vector<vector<int>> levelOrderBottom(TreeNode* root) {
26+
queue<TreeNode*>q;
27+
vector<vector<int>>result;
28+
if (root == nullptr)return {};
29+
q.push(root);
30+
while (!q.empty()) {
31+
vector <int>tmp;
32+
int size = q.size();
33+
for (int i = 0; i < size; i++) {
34+
if (q.front()->left != nullptr)q.push(q.front()->left);
35+
if (q.front()->right != nullptr)q.push(q.front()->right);
36+
tmp.push_back(q.front()->val);
37+
q.pop();
38+
}
39+
result.push_back(tmp);
40+
}
41+
reverse(result.begin(), result.end());
42+
return result;
43+
}
44+
};
45+
// @lc code=end
46+

111.minimum-depth-of-binary-tree.cpp

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* @lc app=leetcode id=111 lang=cpp
3+
*
4+
* [111] Minimum Depth of Binary Tree
5+
*/
6+
7+
// @lc code=start
8+
/**
9+
* Definition for a binary tree node.
10+
* struct TreeNode {
11+
* int val;
12+
* TreeNode *left;
13+
* TreeNode *right;
14+
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
15+
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
16+
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
17+
* };
18+
*/
19+
class Solution {
20+
public:
21+
int minDepth(TreeNode* root) {
22+
if (!root)return 0;
23+
queue<TreeNode*>q;
24+
q.push(root);
25+
int minHeight = 0;
26+
while (!q.empty()) {
27+
minHeight++;
28+
int size = q.size();
29+
for (int i = 0; i < size; i++) {
30+
if (!q.front()->left && !q.front()->right) return minHeight;
31+
if (q.front()->left)
32+
q.push(q.front()->left);
33+
if (q.front()->right)
34+
q.push(q.front()->right);
35+
q.pop();
36+
}
37+
}
38+
return minHeight;
39+
}
40+
};
41+
// @lc code=end
42+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#include <queue>
2+
using namespace std;
3+
/*
4+
* @lc app=leetcode id=116 lang=cpp
5+
*
6+
* [116] Populating Next Right Pointers in Each Node
7+
*/
8+
9+
// @lc code=start
10+
/*
11+
// Definition for a Node.
12+
class Node {
13+
public:
14+
int val;
15+
Node* left;
16+
Node* right;
17+
Node* next;
18+
19+
Node() : val(0), left(NULL), right(NULL), next(NULL) {}
20+
21+
Node(int _val) : val(_val), left(NULL), right(NULL), next(NULL) {}
22+
23+
Node(int _val, Node* _left, Node* _right, Node* _next)
24+
: val(_val), left(_left), right(_right), next(_next) {}
25+
};
26+
*/
27+
28+
class Solution {
29+
public:
30+
Node* connect(Node* root) {
31+
if (!root)return root;
32+
queue<Node*>q;
33+
q.push(root);
34+
while (!q.empty()) {
35+
int size = q.size();
36+
Node* tmp = nullptr;
37+
for (int i = 0; i < size; i++) {
38+
if (tmp) {
39+
tmp->next = q.front();
40+
}
41+
tmp = q.front();
42+
if (q.front()->left)
43+
q.push(q.front()->left);
44+
if (q.front()->right)
45+
q.push(q.front()->right);
46+
q.pop();
47+
}
48+
}
49+
return root;
50+
}
51+
};
52+
// @lc code=end
53+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#include <queue>
2+
using namespace std;
3+
/*
4+
* @lc app=leetcode id=117 lang=cpp
5+
*
6+
* [117] Populating Next Right Pointers in Each Node II
7+
*/
8+
9+
// @lc code=start
10+
/*
11+
// Definition for a Node.
12+
class Node {
13+
public:
14+
int val;
15+
Node* left;
16+
Node* right;
17+
Node* next;
18+
19+
Node() : val(0), left(NULL), right(NULL), next(NULL) {}
20+
21+
Node(int _val) : val(_val), left(NULL), right(NULL), next(NULL) {}
22+
23+
Node(int _val, Node* _left, Node* _right, Node* _next)
24+
: val(_val), left(_left), right(_right), next(_next) {}
25+
};
26+
*/
27+
28+
class Solution {
29+
public:
30+
Node* connect(Node* root) {
31+
if (!root)return root;
32+
queue<Node*>q;
33+
q.push(root);
34+
while (!q.empty()) {
35+
int size = q.size();
36+
Node* tmp = nullptr;
37+
for (int i = 0; i < size; i++) {
38+
if (tmp) {
39+
tmp->next = q.front();
40+
}
41+
tmp = q.front();
42+
if (q.front()->left)
43+
q.push(q.front()->left);
44+
if (q.front()->right)
45+
q.push(q.front()->right);
46+
q.pop();
47+
}
48+
}
49+
return root;
50+
}
51+
};
52+
// @lc code=end
53+

199.binary-tree-right-side-view.cpp

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#include <queue>
2+
#include <vector>
3+
using namespace std;
4+
/*
5+
* @lc app=leetcode id=199 lang=cpp
6+
*
7+
* [199] Binary Tree Right Side View
8+
*/
9+
10+
// @lc code=start
11+
/**
12+
* Definition for a binary tree node.
13+
* struct TreeNode {
14+
* int val;
15+
* TreeNode *left;
16+
* TreeNode *right;
17+
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
18+
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
19+
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
20+
* };
21+
*/
22+
class Solution {
23+
public:
24+
vector<int> rightSideView(TreeNode* root) {
25+
vector <int> result;
26+
if (root == nullptr) return {};
27+
queue<TreeNode*>q;
28+
q.push(root);
29+
while (!q.empty()) {
30+
int size = q.size();
31+
for (int i = 0; i < size; i++) {
32+
if (q.front()->left != nullptr) q.push(q.front()->left);
33+
if (q.front()->right != nullptr) q.push(q.front()->right);
34+
if (i == size - 1) {
35+
result.push_back(q.front()->val);
36+
}
37+
q.pop();
38+
}
39+
}
40+
return result;
41+
42+
43+
}
44+
};
45+
// @lc code=end
46+
+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
#include <vector>
2+
#include <queue>
3+
using namespace std;
4+
class Node {
5+
public:
6+
int val;
7+
vector<Node*> children;
8+
9+
Node() {}
10+
11+
Node(int _val) {
12+
val = _val;
13+
}
14+
15+
Node(int _val, vector<Node*> _children) {
16+
val = _val;
17+
children = _children;
18+
}
19+
};
20+
/*
21+
* @lc app=leetcode id=429 lang=cpp
22+
*
23+
* [429] N-ary Tree Level Order Traversal
24+
*/
25+
26+
// @lc code=start
27+
/*
28+
// Definition for a Node.
29+
class Node {
30+
public:
31+
int val;
32+
vector<Node*> children;
33+
34+
Node() {}
35+
36+
Node(int _val) {
37+
val = _val;
38+
}
39+
40+
Node(int _val, vector<Node*> _children) {
41+
val = _val;
42+
children = _children;
43+
}
44+
};
45+
*/
46+
47+
class Solution {
48+
public:
49+
vector<vector<int>> levelOrder(Node* root) {
50+
if (!root) return{};
51+
queue<Node*>q;
52+
vector<vector<int>>result;
53+
q.push(root);
54+
while (!q.empty()) {
55+
vector<int> tmp;
56+
int size = q.size();
57+
for (int i = 0; i < size; i++) {
58+
for (auto j : q.front()->children) {
59+
if (j != nullptr)q.push(j);
60+
}
61+
tmp.push_back(q.front()->val);
62+
q.pop();
63+
}
64+
result.push_back(tmp);
65+
}
66+
return result;
67+
}
68+
};
69+
// @lc code=end
70+
71+
int main() {
72+
Solution s;
73+
vector<Node*> v = { new Node(3), new Node(2), new Node(4) };
74+
75+
Node* n = new Node(1, v);
76+
77+
s.levelOrder(n);
78+
return 0;
79+
}

0 commit comments

Comments
 (0)