Skip to content

Commit 087f896

Browse files
committed
feat: binary search
1 parent 3be0dfe commit 087f896

File tree

4 files changed

+141
-4
lines changed

4 files changed

+141
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
---
2+
title: 0153.Find-Minimum-in-Rotated-Sorted-Array
3+
subtitle: "https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/description/"
4+
date: 2024-03-29T00:27:00+08:00
5+
lastmod: 2024-03-29T00:27:00+08:00
6+
draft: false
7+
author: "Kimi.Tsai"
8+
authorLink: "https://kimi0230.github.io/"
9+
description: "0153.Find-Minimum-in-Rotated-Sorted-Array"
10+
license: ""
11+
images: []
12+
13+
tags: [LeetCode, Go, Medium, LEETCODETITLE,Amazon, Facebook, Microsoft, Adobe, Goldman Sachs]
14+
categories: [LeetCode]
15+
16+
featuredImage: ""
17+
featuredImagePreview: ""
18+
19+
hiddenFromHomePage: false
20+
hiddenFromSearch: false
21+
twemoji: false
22+
lightgallery: true
23+
ruby: true
24+
fraction: true
25+
fontawesome: true
26+
linkToMarkdown: false
27+
rssFullText: false
28+
29+
toc:
30+
enable: true
31+
auto: true
32+
code:
33+
copy: true
34+
maxShownLines: 200
35+
math:
36+
enable: false
37+
# ...
38+
mapbox:
39+
# ...
40+
share:
41+
enable: true
42+
# ...
43+
comment:
44+
enable: true
45+
# ...
46+
library:
47+
css:
48+
# someCSS = "some.css"
49+
# located in "assets/"
50+
# Or
51+
# someCSS = "https://cdn.example.com/some.css"
52+
js:
53+
# someJS = "some.js"
54+
# located in "assets/"
55+
# Or
56+
# someJS = "https://cdn.example.com/some.js"
57+
seo:
58+
images: []
59+
# ...
60+
---
61+
# [0153.Find-Minimum-in-Rotated-Sorted-Array](https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/description/)
62+
63+
## 題目
64+
65+
## 題目大意
66+
67+
68+
## 解題思路
69+
70+
## Big O
71+
72+
* 時間複雜 : `O(logN)`
73+
* 空間複雜 : `O(1)`
74+
75+
## 來源
76+
* https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/description/
77+
* https://leetcode.cn/problems/find-minimum-in-rotated-sorted-array/
78+
79+
## 解答
80+
https://github.com/kimi0230/LeetcodeGolang/blob/master/Leetcode/0153.Find-Minimum-in-Rotated-Sorted-Array/main.go
81+
82+
```go
83+
84+
```
85+
86+
## Benchmark
87+
88+
```sh
89+
90+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package findminimuminrotatedsortedarray
2+
3+
// 時間複雜 O(logN), 空間複雜 O(1)
4+
func findMin(nums []int) int {
5+
left, right := 0, len(nums)-1
6+
for left < right {
7+
if nums[left] < nums[right] {
8+
return nums[left]
9+
}
10+
mid := int(uint(left+right) >> 1)
11+
if nums[mid] >= nums[left] {
12+
// mid 一定不是最小值了
13+
left = mid + 1
14+
} else {
15+
right = mid
16+
}
17+
}
18+
return nums[left]
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package findminimuminrotatedsortedarray
2+
3+
import "testing"
4+
5+
var tests = []struct {
6+
nums []int
7+
want int
8+
}{
9+
{[]int{3, 4, 5, 1, 2}, 1},
10+
{[]int{4, 5, 6, 7, 0, 1, 2}, 0},
11+
{[]int{11, 13, 15, 17}, 11},
12+
{[]int{2, 1}, 1},
13+
{[]int{1}, 1},
14+
}
15+
16+
func TestFindMin(t *testing.T) {
17+
for _, tt := range tests {
18+
if got := findMin(tt.nums); got != tt.want {
19+
t.Errorf("findMin(%v) = %v, want %v", tt.nums, got, tt.want)
20+
}
21+
}
22+
}
23+
24+
func BenchmarkFindMin(b *testing.B) {
25+
for i := 0; i < b.N; i++ {
26+
findMin(tests[0].nums)
27+
}
28+
}

Leetcode_labuladong/153.寻找旋转排序数组中的最小值.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
// @lc code=start
1010
func findMin(nums []int) int {
1111
left, right := 0, len(nums)-1
12-
for left <= right {
12+
for left < right {
1313
if nums[left] < nums[right] {
1414
return nums[left]
1515
}
1616
mid := int(uint(left+right) >> 1)
17-
if nums[mid] < left {
18-
right = mid - 1
19-
} else {
17+
if nums[mid] >= nums[left] {
2018
left = mid + 1
19+
} else {
20+
right = mid
2121
}
2222
}
2323
return nums[left]

0 commit comments

Comments
 (0)