4. Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively.
Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
You may assume nums1 and nums2 cannot be both empty.
https://leetcode.com/problems/median-of-two-sorted-arrays/
두 개의 정렬된 배열 이 있고, 2개의 배열 값들에서 중앙값(Median)을 찾는다.
=> 간단하게 생각해보면 MergeSort할 때의 머지하는 로직부분을 이용하면 될 것 같았다.
그리고 중앙값은 짝수/홀수 인경우를 나눠서 중앙값을 계산한다.
결과>
'알고리즘' 카테고리의 다른 글
백준 17071(BOJ 17071) java - 숨바꼭질5 (0) | 2020.03.29 |
---|---|
2020 구글 코드잼 참가(Code Jam 2020) (0) | 2020.03.27 |
백준 16235(BOJ 16235) 나무 재테크 JAVA (0) | 2020.03.21 |
백준 17140 JAVA - 2차원 배열과 연산 (0) | 2020.03.08 |
백준 14888 - JAVA 연산자 끼워넣기 (0) | 2020.03.08 |