题目:https://leetcode.com/problems/merge-two-sorted-lists/
代码(github):https://github.com/illuz/leetcode
合并两个有序链表。
很经典的题目,不过知道怎么做后很容易,模拟即可。
有两种做法:
- 开一个节点做 head 的前节点 (下面的 Python 代码实现)
- 不开直接做(C++ 代码实现)
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
题目:https://leetcode.com/problems/merge-two-sorted-lists/
代码(github):https://github.com/illuz/leetcode
合并两个有序链表。
很经典的题目,不过知道怎么做后很容易,模拟即可。
有两种做法: