|
1 | 1 | ---
|
2 |
| -title: 0015.3Sum |
3 |
| -tags: Easy |
4 |
| -author: Kimi Tsai <kimi0230@gmail.com> |
5 |
| -description: |
6 |
| ---- |
| 2 | +title: 0015. 3Sum |
| 3 | +subtitle: "https://leetcode.com/problems/3sum/description/" |
| 4 | +date: 2024-02-22T23:04:00+08:00 |
| 5 | +lastmod: 2024-02-22T23:04:00+08:00 |
| 6 | +draft: false |
| 7 | +author: "Kimi.Tsai" |
| 8 | +authorLink: "https://kimi0230.github.io/" |
| 9 | +description: "0015.3Sum" |
| 10 | +license: "" |
| 11 | +images: [] |
| 12 | + |
| 13 | +tags: [LeetCode, Go, Medium, 3Sum, Array, Two Pointers, Sorting] |
| 14 | +categories: [LeetCode] |
| 15 | + |
| 16 | +featuredImage: "" |
| 17 | +featuredImagePreview: "" |
7 | 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 | +--- |
8 | 61 | # [15. 3Sum](https://leetcode.com/problems/3sum/)
|
9 | 62 |
|
10 | 63 | ## 題目
|
@@ -81,12 +134,12 @@ ThreeSumDoublePoint : 最佳解, 排序 + 雙指針法 (滑動視窗) O(n^2)
|
81 | 134 | 1. 特判,對於數組長度 n,如果數組為 null 或者數組長度小於 3,返回 []。
|
82 | 135 | 2. 對數組進行排序。
|
83 | 136 | 3. 遍歷排序後數組:
|
84 |
| - * 對於重複元素:跳過,避免出現重複解 |
85 |
| - * 令左指針 L=i+1,右指針 R=n−1,當 L<R 時,執行循環: |
86 |
| - * 當nums[i]+nums[L]+nums[R]==0,執行循環,判斷左界和右界是否和下一位置重複, |
87 |
| - 去除重複解。並同時將 L,R 移到下一位置,尋找新的解 |
88 |
| - * 若和大於 0,說明 nums[R] 太大,R 左移 |
89 |
| - * 若和小於 0,說明 nnums[L] 太小,L 右移 |
| 137 | + - 對於重複元素:跳過,避免出現重複解 |
| 138 | + - 令左指針 L=i+1,右指針 R=n−1,當 L<R 時,執行循環: |
| 139 | + - 當nums[i]+nums[L]+nums[R]==0,執行循環,判斷左界和右界是否和下一位置重複, |
| 140 | + 去除重複解。並同時將 L,R 移到下一位置,尋找新的解 |
| 141 | + - 若和大於 0,說明 nums[R] 太大,R 左移 |
| 142 | + - 若和小於 0,說明 nnums[L] 太小,L 右移 |
90 | 143 | */
|
91 | 144 | func ThreeSumDoublePoint(nums []int) [][]int {
|
92 | 145 | result := [][]int{}
|
@@ -127,7 +180,6 @@ func ThreeSumDoublePoint(nums []int) [][]int {
|
127 | 180 | return result
|
128 | 181 | }
|
129 | 182 |
|
130 |
| - |
131 | 183 | func ThreeSumHashTable(nums []int) [][]int {
|
132 | 184 | result := [][]int{}
|
133 | 185 | if len(nums) < 3 {
|
@@ -158,15 +210,49 @@ func ThreeSumHashTable(nums []int) [][]int {
|
158 | 210 | return result
|
159 | 211 | }
|
160 | 212 |
|
| 213 | +func ThreeSumTwoPointer(nums []int) [][]int { |
| 214 | + result := [][]int{} |
| 215 | + sort.Ints(nums) |
| 216 | + |
| 217 | + for i := 0; i < len(nums)-2; i++ { |
| 218 | + if i > 0 && nums[i] == nums[i-1] { |
| 219 | + continue |
| 220 | + } |
| 221 | + target, l, r := -nums[i], i+1, len(nums)-1 |
| 222 | + for l < r { |
| 223 | + sum := nums[l] + nums[r] |
| 224 | + if sum == target { |
| 225 | + result = append(result, []int{nums[i], nums[l], nums[r]}) |
| 226 | + l++ |
| 227 | + r-- |
| 228 | + for l < r && nums[l] == nums[l-1] { |
| 229 | + l++ |
| 230 | + } |
| 231 | + for l < r && nums[r] == nums[r+1] { |
| 232 | + r-- |
| 233 | + } |
| 234 | + } else if sum > target { |
| 235 | + r-- |
| 236 | + } else if sum < target { |
| 237 | + l++ |
| 238 | + } |
| 239 | + } |
| 240 | + } |
| 241 | + return result |
| 242 | +} |
| 243 | + |
161 | 244 | ```
|
162 | 245 |
|
163 | 246 |
|
164 | 247 | ```sh
|
165 |
| -go test -benchmem -run=none LeetcodeGolang/Leetcode/0015.3Sum -bench=. |
166 |
| -cpu: Intel(R) Core(TM) i5-8259U CPU @ 2.30GHz |
167 |
| -BenchmarkThreeSumBurst-8 4905326 260.5 ns/op 72 B/op 3 allocs/op |
168 |
| -BenchmarkThreeSumDoublePoint-8 7796299 138.9 ns/op 72 B/op 3 allocs/op |
169 |
| -BenchmarkThreeSumHashTable-8 6525658 182.5 ns/op 72 B/op 3 allocs/op |
| 248 | +goos: darwin |
| 249 | +goarch: amd64 |
| 250 | +pkg: LeetcodeGolang/Leetcode/0015.3Sum |
| 251 | +cpu: Intel(R) Core(TM) i5-6400 CPU @ 2.70GHz |
| 252 | +BenchmarkThreeSumBurst-4 9838000 121.4 ns/op 48 B/op 2 allocs/op |
| 253 | +BenchmarkThreeSumDoublePoint-4 9069201 112.8 ns/op 48 B/op 2 allocs/op |
| 254 | +BenchmarkThreeSumHashTable-4 7935907 147.1 ns/op 48 B/op 2 allocs/op |
| 255 | +BenchmarkThreeSumTwoPointer-4 10888315 103.5 ns/op 48 B/op 2 allocs/op |
170 | 256 | PASS
|
171 |
| -ok LeetcodeGolang/Leetcode/0015.3Sum 4.201s |
| 257 | +ok LeetcodeGolang/Leetcode/0015.3Sum 5.055s |
172 | 258 | ```
|
0 commit comments