23. Merge k Sorted Lists

# 23. Merge k Sorted Lists 題目來源: https://leetcode.com/problems/merge-k-sorted-lists/description/  題意分析: 合併K個有序鏈表爲一個有序鏈表   Example: Input: [   1->4->5,   1->3->4,   2->6 ]Output: 1->1->2->3->4->4->5->6
相關文章
相關標籤/搜索