Skip to content

Commit afb0ef5

Browse files
committedFeb 22, 2024·
feat: 0015. 3 Sum
1 parent bd9423f commit afb0ef5

File tree

6 files changed

+223
-24
lines changed

6 files changed

+223
-24
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Given a package with a weight limit limit and an array arr of item weights, implement a function
2+
getIndicesOfItemWeights that finds two items whose sum of weights equals the weight limit. The function should
3+
return a pair [i, j] of the indices of the item weights, ordered such that i > j. If such a pair doesn’t exist, return
4+
an empty array.
5+
input: arr = [4, 6, 10, 15, 16], lim = 21
6+
output: [3, 1] # since these are the indices of the weights 6 and 15 whose sum equals to 21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package merging2packages
2+
3+
func getIndicesOfItemWeights(arr []int, limit int) []int {
4+
5+
m := make(map[int]int)
6+
for i, v := range arr {
7+
if _, ok := m[limit-v]; ok {
8+
return []int{i, m[limit-v]}
9+
}
10+
m[v] = i
11+
}
12+
return nil
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
package merging2packages
2+
3+
import (
4+
"reflect"
5+
"testing"
6+
)
7+
8+
func TestGetIndicesOfItemWeights(t *testing.T) {
9+
tests := []struct {
10+
name string
11+
arg1 []int
12+
arg2 int
13+
want []int
14+
}{
15+
{
16+
name: "getIndicesOfItemWeights",
17+
arg1: []int{4, 6, 10, 15, 16},
18+
arg2: 21,
19+
want: []int{3, 1},
20+
},
21+
}
22+
23+
for _, tt := range tests {
24+
t.Run(tt.name, func(t *testing.T) {
25+
if got := getIndicesOfItemWeights(tt.arg1, tt.arg2); !reflect.DeepEqual(got, tt.want) {
26+
t.Errorf("got = %v, want = %v", got, tt.want)
27+
}
28+
})
29+
}
30+
}
31+
32+
func BenchmarkGetIndicesOfItemWeights(b *testing.B) {
33+
arg1 := []int{2, 7, 11, 15}
34+
arg2 := 9
35+
b.ResetTimer()
36+
for i := 0; i < b.N; i++ {
37+
getIndicesOfItemWeights(arg1, arg2)
38+
}
39+
}
40+
41+
/*
42+
go test -benchmem -run=none LeetcodeGolang/Leetcode/0001.Two-Sum -bench=.
43+
BenchmarkTwosum-8 53737875 22.04 ns/op 16 B/op 1 allocs/op
44+
BenchmarkTwosum2-8 25733203 44.74 ns/op 16 B/op 1 allocs/op
45+
*/

‎Leetcode/0015.3Sum/3Sum.go

+31
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,34 @@ func ThreeSumHashTable(nums []int) [][]int {
108108
}
109109
return result
110110
}
111+
112+
func ThreeSumTwoPointer(nums []int) [][]int {
113+
result := [][]int{}
114+
sort.Ints(nums)
115+
116+
for i := 0; i < len(nums)-2; i++ {
117+
if i > 0 && nums[i] == nums[i-1] {
118+
continue
119+
}
120+
target, l, r := -nums[i], i+1, len(nums)-1
121+
for l < r {
122+
sum := nums[l] + nums[r]
123+
if sum == target {
124+
result = append(result, []int{nums[i], nums[l], nums[r]})
125+
l++
126+
r--
127+
for l < r && nums[l] == nums[l-1] {
128+
l++
129+
}
130+
for l < r && nums[r] == nums[r+1] {
131+
r--
132+
}
133+
} else if sum > target {
134+
r--
135+
} else if sum < target {
136+
l++
137+
}
138+
}
139+
}
140+
return result
141+
}

‎Leetcode/0015.3Sum/3Sum_test.go

+24-6
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,14 @@ func TestThreeSumHashTable(t *testing.T) {
7676
}
7777
}
7878

79+
func TestThreeSumTwoPointer(t *testing.T) {
80+
for _, tt := range tests {
81+
if got := ThreeSumTwoPointer(tt.arg1); !reflect.DeepEqual(got, tt.want) {
82+
t.Errorf("got = %v \n want = %v \n", got, tt.want)
83+
}
84+
}
85+
}
86+
7987
func BenchmarkThreeSumBurst(b *testing.B) {
8088
b.ResetTimer()
8189
for i := 0; i < b.N; i++ {
@@ -97,12 +105,22 @@ func BenchmarkThreeSumHashTable(b *testing.B) {
97105
}
98106
}
99107

108+
func BenchmarkThreeSumTwoPointer(b *testing.B) {
109+
b.ResetTimer()
110+
for i := 0; i < b.N; i++ {
111+
ThreeSumTwoPointer(tests[0].arg1)
112+
}
113+
}
114+
100115
/*
101-
go test -benchmem -run=none LeetcodeGolang/Leetcode/0015.3Sum -bench=.
102-
cpu: Intel(R) Core(TM) i5-8259U CPU @ 2.30GHz
103-
BenchmarkThreeSumBurst-8 4905326 260.5 ns/op 72 B/op 3 allocs/op
104-
BenchmarkThreeSumDoublePoint-8 7796299 138.9 ns/op 72 B/op 3 allocs/op
105-
BenchmarkThreeSumHashTable-8 6525658 182.5 ns/op 72 B/op 3 allocs/op
116+
goos: darwin
117+
goarch: amd64
118+
pkg: LeetcodeGolang/Leetcode/0015.3Sum
119+
cpu: Intel(R) Core(TM) i5-6400 CPU @ 2.70GHz
120+
BenchmarkThreeSumBurst-4 9838000 121.4 ns/op 48 B/op 2 allocs/op
121+
BenchmarkThreeSumDoublePoint-4 9069201 112.8 ns/op 48 B/op 2 allocs/op
122+
BenchmarkThreeSumHashTable-4 7935907 147.1 ns/op 48 B/op 2 allocs/op
123+
BenchmarkThreeSumTwoPointer-4 10888315 103.5 ns/op 48 B/op 2 allocs/op
106124
PASS
107-
ok LeetcodeGolang/Leetcode/0015.3Sum 4.201s
125+
ok LeetcodeGolang/Leetcode/0015.3Sum 5.055s
108126
*/

‎Leetcode/0015.3Sum/README.md

+104-18
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,63 @@
11
---
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: ""
718

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+
---
861
# [15. 3Sum](https://leetcode.com/problems/3sum/)
962

1063
## 題目
@@ -81,12 +134,12 @@ ThreeSumDoublePoint : 最佳解, 排序 + 雙指針法 (滑動視窗) O(n^2)
81134
1. 特判,對於數組長度 n,如果數組為 null 或者數組長度小於 3,返回 []。
82135
2. 對數組進行排序。
83136
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 右移
90143
*/
91144
func ThreeSumDoublePoint(nums []int) [][]int {
92145
result := [][]int{}
@@ -127,7 +180,6 @@ func ThreeSumDoublePoint(nums []int) [][]int {
127180
return result
128181
}
129182

130-
131183
func ThreeSumHashTable(nums []int) [][]int {
132184
result := [][]int{}
133185
if len(nums) < 3 {
@@ -158,15 +210,49 @@ func ThreeSumHashTable(nums []int) [][]int {
158210
return result
159211
}
160212

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+
161244
```
162245

163246

164247
```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
170256
PASS
171-
ok LeetcodeGolang/Leetcode/0015.3Sum 4.201s
257+
ok LeetcodeGolang/Leetcode/0015.3Sum 5.055s
172258
```

0 commit comments

Comments
 (0)
Please sign in to comment.