코드 >>
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
|
#include <iostream>
#include <array>
#include <vector>
std::vector<int> findElementInArray(std::vector<std::vector<int>>& nums, int target)
{
int size = (int)nums.size();
int pivot_x = size-1;
int pivot_y = 0;
std::vector<int> array;
while ((pivot_x >= 0) && (pivot_y <= 3))
{
if (nums[pivot_y][pivot_x] == target)
{
array.push_back(pivot_x);
array.push_back(pivot_y);
break;
}
else if (nums[pivot_y][pivot_x] < target)
{
pivot_y++;
}
else
{
pivot_x--;
}
}
array.push_back(-1);
array.push_back(-1);
return array;
}
int main()
{
int target = 18;
std::vector<std::vector<int>> nums;
nums.emplace_back(std::vector<int> {1,2,3,4});
nums.emplace_back(std::vector<int> {5,6,7,8});
nums.emplace_back(std::vector<int> {9,10,11,12});
nums.emplace_back(std::vector<int> {13,14,15,16});
std::vector<int> pivotArray = findElementInArray(nums, target);
for (const int& pivot : pivotArray)
{
std::cout << pivot << " ";
}
std::cout << std::endl;
return 0;
}
|
'C' 카테고리의 다른 글
c++ Rabin-Kaap 알고리즘을 활용한 leetcode 796번 Rotate String (O(N)) (0) | 2021.07.06 |
---|---|
c++ 문자열 검색 O(N)으로 하기 with Rabin-Karp 알고리즘 (0) | 2021.07.05 |
c++ 배열 image in-place로 rotate 하기 (0) | 2021.07.04 |
c++ leetcode array find duplicate by O(N) (0) | 2021.07.04 |
c++ leetcode 배열 Shorted Unsorted Continuous Subarray (0) | 2021.07.03 |