K Smallest

    1. Kth Largest Element in an Array:二分查找,类似快排
    1. Find K Closest Elements:二分查找(索引)
    1. Kth Smallest Element in a Sorted Matrix: 二分查找(值),二分查找(索引,逐行判定)
    1. Find K-th Smallest Pair Distance:二分查找(值),双指针判定
    1. Find K Pairs with Smallest Sums:堆,转换为merge k list