兩個有序序列的中位數

2021-09-23 14:02:19 字數 769 閱讀 4753

已知有兩個等長的非降序序列s1, s2, 設計函式求s1與s2並集的中位數。有序序列a​0​​,a​1​​,⋯,a​n−1​​的中位數指a​(n−1)/2​​的值,即第⌊(n+1)/2⌋個數(a​0​​為第1個數)。

輸入分三行。第一行給出序列的公共長度n(0在一行中輸出兩個輸入序列的並集序列的中位數。

5

1 3 5 7 9

2 3 4 5 6

4
6

-100 -10 1 1 1 1

-50 0 2 3 4 5

1
#include

using namespace std;

int a[100000], b[100000];

int findmid(int aleft, int aright, int bleft, int bright)

for(int i=1;i<=n;i++)

int mid1=ifinitty,mid2=ifinitty;

int cnum=1;

int i=1,j=1;

int mid=0;

while(cnum<=2*n)

else

if(cnum==n)

if(cnum==n+1)

if(mid1!=ifinitty&&mid2!=ifinitty)

cnum++;

}cout<

}

兩個有序序列的中位數

5 7 兩個有序序列的中位數 25分 已知有兩個等長的非降序序列s1,s2,設計函式求s1與s2並集的中位數。有序序列a0,a1,an 1a 0,a 1,cdots,a a 0 a 1 a n 1 的中位數指a n 1 2a a n 1 2 的值,即第 n 1 2 lfloor n 1 2 rflo...

兩個有序序列的中位數

問題 已知有兩個等長的非降序序列s1,s2,設計函式求s1與s2並集的中位數。有序序列a 0 a 1 a n 1 的中位數指a n 1 2 的值,即第 n 1 2 個數 a 0 為第1個數 演算法描述 輸入兩個長度自定且等長的陣列,然後對他們進行賦值。演算法的思路是分別取他們的中位數進行比較,假設兩...

兩個有序序列的中位數

7 1 兩個有序序列的中位數 30 分 已知有兩個非降序序列s1,s2,求s1與s2歸併成乙個序列的低位中位數。有序序列a0,a1,an 1的中位數指a n 1 2的值,即第 n 1 2 個數 a0為第1個數 輸入格式 輸入分4行。第一行給出第乙個序列的長度n1 0輸出格式 在一行中輸出兩個輸入序列...