[leetcode][C++] search in rotated sorted array
https://leetcode.com/problems/search-in-rotated-sorted-array/ Search in Rotated Sorted Array - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com input값은 정렬된 배열이기 때문에 바이너리 서치를 사용할 수 있다. 배열이 시작하는 시점 (정렬이 끝나는 시점)을 찾아서 범위마다 바이너리 서치를 실행해서 풀었다. nums[] = {5 1 < 2 < 3 < 4} binarySe..
Problem Solving
2021. 10. 6. 20:51