-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfindDuplicate.go
More file actions
84 lines (70 loc) · 1.58 KB
/
Copy pathfindDuplicate.go
File metadata and controls
84 lines (70 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* https://leetcode.com/problems/find-the-duplicate-number/description/
Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive),
prove that at least one duplicate number must exist. Assume that there is only one duplicate number, find the duplicate one.
Note:
You must not modify the array (assume the array is read only).
You must use only constant, O(1) extra space.
Your runtime complexity should be less than O(n2).
There is only one duplicate number in the array, but it could be repeated more than once.
*/
package larray
// https://en.wikipedia.org/wiki/Cycle_detection#Tortoise_and_hare
func findDuplicate(nums []int) int {
slow, fast := 0, 0
for {
slow = nums[slow]
fast = nums[nums[fast]]
if fast == slow {
break
}
}
finder := 0
for {
finder = nums[finder]
slow = nums[slow]
if finder == slow {
break
}
}
return slow
}
/*
// Binary Search
func findDuplicate(nums []int) int {
left, right, count := 1, len(nums)-1, 0 // 1 <= input num <= n, n = len(nums)-1
for right > left {
mid := left + (right-left)>>1
count = mid - left + 1
for i := 0; i < len(nums); i++ {
if left <= nums[i] && nums[i] <= mid {
count--
}
}
if right-left == 1 {
break
}
if count < 0 { // in left -- mid
right = mid
} else {
left = mid
}
}
if count < 0 {
return left
}
return right
}
*/
/*
// O(n^2)
func findDuplicate(nums []int) int {
for i := 0; i < len(nums); i++ {
for j := len(nums) - 1; j > i; j-- {
if nums[i] == nums[j] {
return nums[i]
}
}
}
panic("input error")
}
*/