문제와 예시는 주소에서 확인

https://leetcode.com/problems/median-of-two-sorted-arrays/

 

Median of Two Sorted Arrays - 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

 

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
32
33
34
35
36
37
38
39
40
41
class Solution {
    public double findMedianSortedArrays(int[] a, int[] b) {
        
       int allSize = (a.length + b.length);
 
        int chkSize = (allSize / 2)+1;
        int[] c = new int[chkSize];
        int chkNum = 0;
        int chkNum2 = 0;
        while (chkSize > 0) {
 
            if (a.length - 1 < chkNum) {
                c[chkSize - 1= b[chkNum2];
                chkNum2++;
                chkSize--;
                continue;
            }
            if (b.length - 1 < chkNum2) {
                c[chkSize - 1]= a[chkNum];
                chkNum++;
                chkSize--;
                continue;
            }
 
            if (a[chkNum] < b[chkNum2]) {
                c[chkSize - 1= a[chkNum];
                chkNum++;
            } else {
                c[chkSize - 1= b[chkNum2];
                chkNum2++;
            }
            chkSize--;
        }
        
        if (allSize % 2 == 0) {
            return ((double)(c[0+ c[1])/2);
        }
        
        return (double)c[0];
    }
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

https://it-and-life.tistory.com/48

이 블로그글의 마지막 줄에 등록된 링크에서 힌트를 얻음

 

시간복잡도 O(log n+m)

 

1 .매개배열 2개의 사이즈값을 구해 더한후 반으로 나눠서 1을 더함

   1을 더한 이유는 배열은 0부터 시작하기때문에 숫자 맞춰줄려고 더함

2. 반을 나눈 이유는 두개의 배열을 합친 후 그 중간의 값을 알아야할때 

   합친후 반을 나눈것이랑 같기 때문

3. 그 후 반으로 나눈 숫자와 같아질때까지 숫자를 더해준다.

4. 정렬로 작은 값부터 등록하므로 배열의 인덱스는 따로 관리

 

 

 

 

+ Recent posts