티스토리 뷰
Algorithm/LeetCode
34. Find First and Last Position of Element in Sorted Array
Jaime.Lee 2022. 7. 29. 10:30Problem
Given an array of integers nums sorted in non-decreasing order, find the starting and ending position of a given target value.
If target is not found in the array, return [-1, -1].
You must write an algorithm with O(log n) runtime complexity.
Example 1:
Input: nums = [5,7,7,8,8,10], target = 8
Output: [3,4]
Example 2:
Input: nums = [5,7,7,8,8,10], target = 6
Output: [-1,-1]
Example 3:
Input: nums = [], target = 0
Output: [-1,-1]
Constraints:
- 0 <= nums.length <= 10^5
- -10^9 <= nums[i] <= 10^9
- nums is a non-decreasing array.
- -10^9 <= target <= 10^9
Solution
감소하지 않는 정수 배열이 주어질 때 타겟 정수의 시작과 끝 인덱스를 반환하는 문제입니다.
해당 정수가 없을 때는 [-1, -1]을 반환합니다.
이진탐색을 이용해 풀 수 있습니다.
package io.lcalmsky.leetcode.find_first_and_last_position_of_element_in_sorted_array;
public class Solution {
public int[] searchRange(int[] nums, int target) {
int[] targetRange = {-1, -1};
int leftIndex = binarySearch(nums, 0, nums.length, target, true);
if (leftIndex == nums.length || nums[leftIndex] != target) {
return targetRange;
}
targetRange[0] = leftIndex;
targetRange[1] = binarySearch(nums, 0, nums.length, target, false) - 1;
return targetRange;
}
private int binarySearch(int[] nums, int low, int high, int target, boolean leftMost) {
if (low < high) {
int mid = low + (high - low) / 2;
if (nums[mid] > target || (leftMost && target == nums[mid])) {
return binarySearch(nums, low, mid, target, leftMost);
}
return binarySearch(nums, mid + 1, high, target, leftMost);
}
return low;
}
}
Test
package io.lcalmsky.leetcode.find_first_and_last_position_of_element_in_sorted_array;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(new int[]{5, 7, 7, 8, 8, 10}, 8, new int[]{3, 4}),
() -> test(new int[]{5, 7, 7, 8, 8, 10}, 6, new int[]{-1, -1}),
() -> test(new int[]{}, 0, new int[]{-1, -1})
);
}
private void test(int[] nums, int target, int[] expected) {
// when
Solution solution = new Solution();
int[] actual = solution.searchRange(nums, target);
// then
assertArrayEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
729. My Calendar I (0) | 2022.08.05 |
---|---|
890. Find and Replace Pattern (0) | 2022.07.30 |
86. Partition List (0) | 2022.07.23 |
92. Reverse Linked List II (0) | 2022.07.22 |
473. Matchsticks to Square (0) | 2022.07.16 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 함께 자라기 후기
- @ManyToOne
- Spring Boot
- 스프링 부트 회원 가입
- Spring Boot JPA
- spring boot app
- QueryDSL
- Spring Boot Tutorial
- JSON
- gRPC
- spring boot jwt
- 알고리즘
- Jackson
- spring boot application
- Linux
- 스프링 부트 애플리케이션
- 헥사고날 아키텍처
- 스프링부트
- Spring Data JPA
- intellij
- 클린 아키텍처
- proto3
- JPA
- r
- 스프링 데이터 jpa
- 함께 자라기
- Java
- leetcode
- 스프링 부트
- 스프링 부트 튜토리얼
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함