using System; using System.Collections.Generic; class Solution { SortedDictionary<int, int> sortDic = new SortedDictionary<int, int>(); public int findKth(List<int> a, int n, int K) { // write code here if (n == 0 || K > a.Count) return int.MaxValue;//找不到 List<int> res = n...