私の質問は、このリンクの方法 2 に関するものです。ここでは、2 つの等しい長さの並べ替えられた配列が与えられ、マージされた 2 つの配列の中央値を見つける必要があります。
Algorithm:
1) Calculate the medians m1 and m2 of the input arrays ar1[]
and ar2[] respectively.
2) If m1 and m2 both are equal then we are done.
return m1 (or m2)
3) If m1 is greater than m2, then median is present in one
of the below two subarrays.
a) From first element of ar1 to m1 (ar1[0...|_n/2_|])
b) From m2 to last element of ar2 (ar2[|_n/2_|...n-1])
4) If m2 is greater than m1, then median is present in one
of the below two subarrays.
a) From m1 to last element of ar1 (ar1[|_n/2_|...n-1])
b) From first element of ar2 to m2 (ar2[0...|_n/2_|])
5) Repeat the above process until size of both the subarrays
becomes 2.
6) If size of the two arrays is 2 then use below formula to get
the median.
Median = (max(ar1[0], ar2[0]) + min(ar1[1], ar2[1]))/2
Example:
ar1[] = {1, 12, 15, 26, 38}
ar2[] = {2, 13, 17, 30, 45}
For above two arrays m1 = 15 and m2 = 17
For the above ar1[] and ar2[], m1 is smaller than m2. So median is present in one of the following two subarrays.
[15, 26, 38] and [2, 13, 17]
Let us repeat the process for above two subarrays:
m1 = 26 m2 = 13.
m1 is greater than m2. So the subarrays become
[15, 26] and [13, 17]
Now size is 2, so median = (max(ar1[0], ar2[0]) + min(ar1[1], ar2[1]))/2
= (max(15, 13) + min(26, 17))/2
= (15 + 17)/2
= 16
配列の半分を除外する方法を理解しており、中央値要素は特に配列の半分、つまりステップ1、2、3、4、5 になると言います。
しかし、私が理解できないのは、マージされた配列の中央値が、配列の半分を剪定した後のマージされた配列の中央値、つまり{1、12、15、26のマージ配列の中央値であるとどのように言うことができるかということです。 , 38} と {2, 13, 17, 30, 45} は、{2,13,17} と {15, 26, 38} のマージ配列の中央値になります。
説明してください。前もって感謝します。