forked from terrytong0876/LintCode-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClosest Number in Sorted Array.java
executable file
·69 lines (57 loc) · 2.02 KB
/
Closest Number in Sorted Array.java
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
E
跟Closest Binary Search Tree Vlaue类似:
Binary search. 考虑mid-1, mid+1.
一旦没有mid = target.index。 那么target最终就narrow down在(mid-1,mid) 或者(mid,mid+1)
```
/*
Given a target number and an integer array A sorted in ascending order, find the index i in A such that A[i] is closest to the given target.
Return -1 if there is no element in the array.
Example
Given [1, 2, 3] and target = 2, return 1.
Given [1, 4, 6] and target = 3, return 1.
Given [1, 4, 6] and target = 5, return 1 or 2.
Given [1, 3, 3, 4] and target = 2, return 0 or 1 or 2.
Note
There can be duplicate elements in the array, and we can return any of the indices with same value.
Challenge
O(logn) time complexity.
Tags Expand
Binary Search
*/
/*
Thoughts:
Do binary search.
Check the state of A[mid] < target < A[mid + 1] or A[mid - 1] < target < A[mid]
return the index that creates smallest diff.
*/
public class Solution {
/**
* @param A an integer array sorted in ascending order
* @param target an integer
* @return an integer
*/
public int closestNumber(int[] A, int target) {
if (A == null || A.length == 0) {
return -1;
}
int start = 0;
int end = A.length - 1;
int mid;
while (start + 1 < end) {
mid = start + (end - start) / 2;
if (A[mid] == target) {
return mid;
} else if (mid - 1 >= 0 && A[mid - 1] <= target && target < A[mid]) {
return (target - A[mid - 1]) < (A[mid] - target) ? (mid - 1) : mid;
} else if (mid + 1 < A.length && A[mid] < target && target <= A[mid + 1]) {
return (target - A[mid]) < (A[mid + 1] - target) ? mid : mid + 1;
} else if (A[mid] < target) {
start = mid;
} else {
end = mid;
}
}
return (target - A[start]) < (A[end] - target) ? start : end;
}
}
```