0%

UVA 10107

UVA 10107 - One-Two-Three

One-Two-Three

題意:

找中位數。

思路:

每次都排序然後計算,如果是偶數就(ary[k/2-1] + ary[k/2]) / 2,奇數就直接印ary[k/2]。

程式碼: