File tree 2 files changed +55
-0
lines changed
2 files changed +55
-0
lines changed Original file line number Diff line number Diff line change 60
60
61
61
** 题目代码**
62
62
63
+ Java Code:
64
+
63
65
``` java
64
66
class Solution {
65
67
public int findMin (int [] nums ) {
@@ -85,3 +87,27 @@ class Solution {
85
87
}
86
88
```
87
89
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
+
Original file line number Diff line number Diff line change @@ -350,6 +350,8 @@ class Solution {
350
350
351
351
** 测试题目: leetcode 102 二叉树的层序遍历**
352
352
353
+ Java Code:
354
+
353
355
``` java
354
356
class Solution {
355
357
public List<List<Integer > > levelOrder (TreeNode root ) {
@@ -378,6 +380,33 @@ class Solution {
378
380
}
379
381
```
380
382
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
+
381
410
时间复杂度:O(n) 空间复杂度:O(n)
382
411
383
412
大家如果吃透了二叉树的层序遍历的话,可以顺手把下面几道题目解决掉,思路一致,甚至都不用拐弯
You can’t perform that action at this time.
0 commit comments