LeetCode算法入门- Merge Two Sorted Lists -day15
生活随笔
收集整理的這篇文章主要介紹了
LeetCode算法入门- Merge Two Sorted Lists -day15
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
LeetCode算法入門- Merge Two Sorted Lists -day15
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
Example:
Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4
題目分析:有點類似于歸并排序,從頭結點開始對比,小的放下去,并且往后移動
Java實現:
總結
以上是生活随笔為你收集整理的LeetCode算法入门- Merge Two Sorted Lists -day15的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Class.forName()、Clas
- 下一篇: 数据列表的分页实现————分页敏捷开发