feat(Go-Tool):2021/03/18:新增超过半数数字系列算法题,新增出现次数不同的数字系列算法题

This commit is contained in:
Huangzj
2021-03-18 15:55:40 +08:00
parent 8dbfebe5be
commit 00ada130fa
14 changed files with 441 additions and 0 deletions
@@ -0,0 +1,25 @@
/*
* @Author : huangzj
* @Time : 2021/3/16 17:51
* @Description
*/
package NumberCount
type OnlyOneNumberShowOnceObj struct{}
func (*OnlyOneNumberShowOnceObj) Doc() string {
return `
一个整型数组里除了一个数字之外,其他的数字都出现了两次。请写程序找出这两个只出现一次的数字。要求时间复杂度为O(n),空间复杂度为O(1)。
`
}
//通过异或解决
func OnlyOneNumberShowOnce(numberList []int) int {
result := 0
for _, num := range numberList {
result ^= num
}
return result
}