[LeetCode 문제 풀이] Search Insert Position

Search Insert Position  (Java 코드)
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You may assume no duplicates in the array.
Here are few examples. [1,3,5,6] , 5 → 2 [1,3,5,6] , 2 → 1 [1,3,5,6] , 7 → 4 [1,3,5,6] , 0 → 0
public class Solution {
	public int searchInsert(int[] A, int target) {
		int result = 0;
		if (target < A[0]) {
			result = 0;
		}
		if (target > A[A.length - 1]) {
			result = A.length;
		}
		for (int i = 0; i < A.length; i++) {
			if (target == A[i]) {
				result = i;
			}
			if (i != A.length - 1) {
				if ((target > A[i]) && target < A[i + 1]) {
					result = i + 1;
				}
			}

		}
		return result;

	}
}

문제 풀이 방향: 이 문 제 는 어렵 지 않 습 니 다. 저 는 먼저 배열 에 있 는 지 없 는 지 를 보고 있 습 니 다. 있 으 면 i 를 출력 하고 없 으 면 이전 보다 크 고 뒤의 것 보다 작 으 며 배열 의 경 계 를 넘 는 문 제 를 주의 하 겠 습 니 다.
올 라 오 면 첫 번 째 숫자 보다 작 으 면 0 을 출력 하고 마지막 큰 출력 배열 보다 길 이 를 출력 합 니 다.

좋은 웹페이지 즐겨찾기