feat(Go-StudyExample):2020/12/25:新增leetcode部分习题(数据结构、二进制相关)

This commit is contained in:
Huangzj
2020-12-25 11:49:56 +08:00
parent 6c3a44b2e5
commit 0a2e5e71a6
12 changed files with 648 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
/*
* @Author : huangzj
* @Time : 2020/12/21 11:18
* @Description
*/
package simple
import "testing"
type TwoNum struct{}
func (TwoNum) Description(string) string {
return `
给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
示例:
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
`
}
//思路分析:map用来缓存比target小的数据, 比如说A + B =target.先遍历到A,则存储B -> A的下标,当找到B的时候,就可以把A的下标一起返回
func twoSum(nums []int, target int) []int {
deal := make(map[int]int, 0)
for i, row := range nums {
if index, ok := deal[row]; ok {
return []int{index, i}
}
deal[target-row] = i
}
return []int{}
}
func TestTwoSum(t *testing.T) {
}