Skip to content

Commit 0eb1fb2

Browse files
authored
Merge pull request #25 from coderhare/main
lc 153, 102提交cpp代码
2 parents 3cdbea1 + 4b8249e commit 0eb1fb2

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed

animation-simulation/二分查找及其变种/leetcode153搜索旋转数组的最小值.md

+26
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@
6060

6161
**题目代码**
6262

63+
Java Code:
64+
6365
```java
6466
class Solution {
6567
public int findMin(int[] nums) {
@@ -85,3 +87,27 @@ class Solution {
8587
}
8688
```
8789

90+
C++ Code:
91+
92+
```cpp
93+
class Solution {
94+
public:
95+
int findMin(vector <int> & nums) {
96+
int left = 0;
97+
int right = nums.size() - 1;
98+
while (left < right) {
99+
if (nums[left] < nums[right]) {
100+
return nums[left];
101+
}
102+
int mid = left + ((right - left) >> 1);
103+
if (nums[left] > nums[mid]) {
104+
right = mid;
105+
} else {
106+
left = mid + 1;
107+
}
108+
}
109+
return nums[left];
110+
}
111+
};
112+
```
113+

animation-simulation/二叉树/二叉树基础.md

+29
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,8 @@ class Solution {
350350

351351
**测试题目: leetcode 102 二叉树的层序遍历**
352352

353+
Java Code:
354+
353355
```java
354356
class Solution {
355357
public List<List<Integer>> levelOrder(TreeNode root) {
@@ -378,6 +380,33 @@ class Solution {
378380
}
379381
```
380382

383+
C++ Code:
384+
385+
```cpp
386+
class Solution {
387+
public:
388+
vector<vector<int>> levelOrder(TreeNode* root) {
389+
vector<vector<int>> res;
390+
if (!root) return res;
391+
queue<TreeNode *> q;
392+
q.push(root);
393+
while (!q.empty()) {
394+
vector <int> t;
395+
int size = q.size();
396+
for (int i = 0; i < size; ++i) {
397+
TreeNode * temp = q.front();
398+
q.pop();
399+
if (temp->left != nullptr) q.push(temp->left);
400+
if (temp->right != nullptr) q.push(temp->right);
401+
t.emplace_back(temp->val);
402+
}
403+
res.push_back(t);
404+
}
405+
return res;
406+
}
407+
};
408+
```
409+
381410
时间复杂度:O(n) 空间复杂度:O(n)
382411
383412
大家如果吃透了二叉树的层序遍历的话,可以顺手把下面几道题目解决掉,思路一致,甚至都不用拐弯

0 commit comments

Comments
 (0)