23. 合併K個排序鏈表

https://leetcode-cn.com/problems/merge-k-sorted-lists/description/ 合併 k 個排序鏈表,返回合併後的排序鏈表。請分析和描述算法的複雜度。 示例: 輸入: [ 1->4->5, 1->3->4, 2->6 ] 輸出: 1->1->2->3->4->4->5->6 /** * Definition for singly-
相關文章
相關標籤/搜索