정렬된 벡터에서의 binary search를 적용하라
Binary search의 Time complexity는 O(logn)이다.
코드>>
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
|
#include <iostream>
#include <array>
#include <vector>
#include <algorithm>
// binary search : O(Logn)
// 정렬된 데이터에서 binary search를 적용하라
int search(std::vector<int> nums, int target)
{
int left = 0;
int right = (int)nums.size() - 1;
int pivot;
while (left <= right)
{
pivot = (left + right) / 2;
if (nums[pivot] == target)
{
return pivot;
}
else if (nums[pivot] < target)
{
left = pivot + 1;
}
else
{
right = pivot - 1;
}
}
return -1;
}
int main()
{
std::vector<int> nums = { 1,3,5,6,7,15,20,25,40,57,80 };
int ans;
ans = search(nums,80);
std::cout << "pivot index : " << ans << std::endl;
return 0;
}
|
'C' 카테고리의 다른 글
c++ PS Find pivot Index, Find minimum subarray with O(n) (0) | 2021.06.30 |
---|---|
c++ 코딩테스트 array에서 0을 뒤로 보내기(Move zeros) (0) | 2021.06.29 |
c++ stable sort, unstable sort (0) | 2021.06.29 |
c++ 클래스, fstream(파일인풋), stringstream(스트링인풋) (0) | 2021.06.29 |
c++ 다운캐스팅 시 static cast 절대 쓰지 말자, dynamic_cast (0) | 2021.06.29 |