sortBy: sortBy[B](f: (A) ⇒ B)(implicit ord: math.Ordering[B]): List[A] 按照應用函數f以後產生的元素進行排序函數
sorted: sorted[B >: A](implicit ord: math.Ordering[B]): List[A] 按照元素自身進行排序排序
sortWith: sortWith(lt: (A, A) ⇒ Boolean): List[A] 使用自定義的比較函數進行排序,比較函數booleanci