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.
public class Solution { public ListNode mergeTwoLists(ListNode l1, ListNode l2) { if (l1 == null) { return l2; } if (l2 == null) { return l1; } ListNode head, tail; if (l1.val < l2.val) { head = tail = l1; l1 = l1.next; } else { head = tail = l2; l2 = l2.next; } while (l1!=null && l2!=null) { if (l1.val < l2.val) { tail.next = l1; tail = l1; l1 = l1.next; } else { tail.next = l2; tail = l2; l2 = l2.next; } } tail.next = (l1==null)?l2:l1; return head; } }
class Solution { public: ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) { if (l1 == NULL) { return l2; } if (l2 == NULL) { return l1; } ListNode* head; ListNode* tail; if (l1->val < l2->val) { head = tail = l1; l1 = l1->next; } else { head = tail = l2; l2 = l2->next; } while (l1!=NULL && l2!=NULL) { if (l1->val < l2->val) { tail->next = l1; tail = l1; l1 = l1->next; } else { tail->next = l2; tail = l2; l2 = l2->next; } } tail->next = (l1==NULL)?l2:l1; return head; } };
相关推荐
第四章 Leetcode 题解 1. Two Sum 2. Add Two Numbers ...21. Merge Two Sorted Lists 22. Generate Parentheses 23. Merge k Sorted Lists 24. Swap Nodes in Pairs 25. Reverse Nodes in k-Group 26. Remove Dupli
【Leetcode】Merge Two Sorted Lists
c c语言_leetcode 0021_merge_two_sorted_lists.zip
js js_leetcode题解之21-merge-two-sorted-lists.js
c语言入门 C语言_leetcode题解之21-merge-two-sorted-lists.c
21.Merge Two Sorted Lists LeetCode 23.Merge k Sorted Lists(solve1) LeetCode 23.Merge k Sorted Lists(solve2) LeetCode 86.Partition List LeetCode 92.Reverse Linked List II LeetCode 138.Copy List with ...
* 合并两个排序列表(Merge Two Sorted Lists):合并两个排序列表。 * 搜索插入位置(Search Insert Position):在排序数组中搜索插入位置。 8. 动态规划: * 3Sum(3Sum):找到数组中三个元素的和等于目标值...
lru缓存leetcode leetcode ...Merge Two Sorted Lists 22. Generate Parentheses 25. Reverse Nodes in k-Group 26. Remove Duplicates from Sorted Array 27. Remove Element 28. Implement strStr() 3
leetcode双人赛LeetCode 编号 题目 难度 题型 备注 Two Sum 简单 Add Two Numbers 中等 链结串列 重要 Longest Substring ...Two Sorted ...Merge Two Sorted Lists 简单 链结串列 重要 Remove Duplicates from
Merge Two Sorted Lists 83 Easy Remove Duplicates from Sorted List 141 Easy Linked List Cycle 160 Easy Intersection of Two Linked Lists 203 Easy Remove Linked List Elements no 206 Easy Reverse Linked ...
Two Sum (Easy) 2. Add Two Numbers (Medium) 3. Longest Substring Without Repeating Characters (Medium) 7. Reverse Integer (Easy) 21. Merge Two Sorted Lists (Easy) 23. Merge k Sorted Lists (Hard) 31. ...
leetcode中文版 LeetCode # Title Chinese Tag Solution 1 Two Sum 两数之和 array,hash 2 Add Two Numbers 两数相加 math 3 Longest ...Two Sorted ...two ...Merge Two Sorted Lists 合并两个有序链表 lin
6. **链表操作**:链表题目考察了指针操作和逻辑思维,如"Reverse Linked List"(反转链表)和"Merge Two Sorted Lists"(合并两个排序链表)。 7. **哈希表**:哈希表的高效查找和存储特性使得它在解决许多问题时...
5. **Merge Two Sorted Lists(题目21)** 将两个已排序的链表合并为一个有序链表。这可以通过创建一个新的链表节点,然后以递归或迭代的方式,每次选取两个链表当前节点中的较小值作为新节点的值,然后更新指向下...
20. Merge Two Sorted Lists:合并两个有序链表。 21. Add Two Numbers:模拟两数相加的过程,链表表示数字,个位对齐。 22. Swap Nodes in Pairs:在链表中交换相邻节点。 23. Merge K Sorted Lists:合并 k 个排序...
- 题目包括合并两个有序链表(Merge Two Sorted Lists)、在单链表中交换相邻节点(Swap Nodes in Pairs)。 - 有难度的链表题目则要求合并K个有序链表(Merge K Sorted Lists)、复制带有随机指针的链表(Copy List...
20. Merge Two Sorted Lists:合并两个已排序的链表。 21. Add Two Numbers:表示两个大整数相加的链表形式。 22. Swap Nodes in Pairs:将链表中的节点两两交换。 23. Merge K Sorted Linked Lists:合并K个排序...
LeetCode 原创文章每周最少两篇,后续最新文章会在首发,视频首发,大家可以加我进交流群,技术交流或提意见都可以,欢迎Star!...Merge Two Sorted Lists 83 * Remove Duplicates from Sorted Lis