티스토리 뷰
Problem
Given an array of integers nums which is sorted in ascending order, and an integer target, write a function to search target in nums. If target exists, then return its index. Otherwise, return -1.
You must write an algorithm with O(log n) runtime complexity.
Example 1:
Input: nums = [-1,0,3,5,9,12], target = 9
Output: 4
Explanation: 9 exists in nums and its index is 4
Example 2:
Input: nums = [-1,0,3,5,9,12], target = 2
Output: -1
Explanation: 2 does not exist in nums so return -1
Constraints:
- 1 <= nums.length <= 10^4
- -10^4 < nums[i], target < 10^4
- All the integers in nums are unique.
- nums is sorted in ascending order.
Solution
오름차순으로 정렬된 정수 배열이 주어지고 타겟 정수가 주어질 때, 타겟 정수의 인덱스를 반환하는 문제입니다.
존재하지 않을 경우 -1을 반환합니다.
public class Solution {
public int search(int[] nums, int target) {
return search(nums, target, 0, nums.length);
}
private int search(int[] nums, int target, int left, int right) {
if (left >= right) { // (1)
return -1;
}
int mid = (left + right) / 2; // (2)
if (nums[mid] == target) { // (3)
return mid;
}
if (nums[mid] > target) { // (4)
return search(nums, target, left, mid);
}
if (nums[mid] < target) { // (5)
return search(nums, target, mid + 1, right);
}
return -1;
}
}
- 끝까지 탐색했는데 target을 찾지 못할 경우 -1을 반환합니다.
- 이진 검색을 해야하므로 현재 범위의 중간 값을 구합니다.
- target과 일치하는 경우 해당 인덱스를 반환합니다.
- target보다 더 큰 경우 큰 쪽의 범위를 반으로 줄입니다.
- target보다 작은 경우 작은 쪽의 범위를 반으로 줄입니다.
Test
package io.lcalmsky.leetcode.binary_search;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void givenSortedArray_whenFindNumber_thenReturnsItsIndexCorrectly() {
assertAll(
() -> test(new int[]{-1, 0, 3, 5, 9, 12}, 9, 4),
() -> test(new int[]{-1, 0, 3, 5, 9, 12}, 2, -1)
);
}
private void test(int[] given, int target, int expected) {
// when
Solution solution = new Solution();
int actual = solution.search(given, target);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
287. Find the Duplicate Number (0) | 2022.04.07 |
---|---|
1337. The K Weakest Rows in a Matrix (0) | 2022.04.03 |
1029. Two City Scheduling (0) | 2022.04.01 |
1663. Smallest String With A Given Numeric Value (0) | 2022.03.30 |
763. Partition Labels (0) | 2022.03.26 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- leetcode
- 스프링부트
- QueryDSL
- JPA
- 함께 자라기
- spring boot app
- Spring Boot Tutorial
- Java
- spring boot jwt
- proto3
- @ManyToOne
- 스프링 부트 튜토리얼
- 헥사고날 아키텍처
- JSON
- 함께 자라기 후기
- 스프링 부트 회원 가입
- Spring Boot
- Linux
- intellij
- Spring Boot JPA
- 클린 아키텍처
- spring boot application
- 스프링 데이터 jpa
- r
- 스프링 부트 애플리케이션
- gRPC
- 스프링 부트
- Jackson
- Spring Data JPA
- 알고리즘
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함