LeetCode 23. Merge k Sorted Lists
23. Merge k Sorted Lists
Difficulty:: Hard
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.
Example:
1 | Input: |
Solution
Language: Java
1 | /** |
或者可以用归并排序的方法
Difficulty:: Hard
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.
Example:
1 | Input: |
Language: Java
1 | /** |
或者可以用归并排序的方法