Sort a linked list in O(n log n) time using constant space complexity.
====analysis=======
mergeSort for singly-linked list
====code=======
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *mergeSort(ListNode *head, ListNode *newhead) {
if(!head) return newhead;
if(!newhead) return head;
ListNode *smaller = head->val <= newhead->val ? head : newhead;
ListNode *larger = head->val > newhead->val ? head : newhead;
ListNode *result = smaller;
while(smaller->next && larger) {
if(smaller->val <= larger->val && larger->val < smaller->next->val) {
ListNode *q = larger->next;
larger->next = smaller->next;
smaller->next = larger;
smaller = smaller->next;
larger = q;
} else {
smaller = smaller->next;
}
}
if(larger) {
smaller->next = larger;
}
return result;
}
ListNode *sortList(ListNode *head) {
if(!head || !head->next) return head;
ListNode *slow = head;
ListNode *fast = head->next;
while(fast && fast->next) {
slow = slow->next;
fast = fast->next->next;
}
ListNode *rightP = slow->next;
slow->next = NULL;
head = sortList(head);
rightP = sortList(rightP);
return mergeSort(head, rightP);
}
};
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *mergeSort(ListNode *head, ListNode *newhead) {
if(!head) return newhead;
if(!newhead) return head;
ListNode *smaller = head->val <= newhead->val ? head : newhead;
ListNode *larger = head->val > newhead->val ? head : newhead;
ListNode *result = smaller;
while(smaller->next && larger) {
if(smaller->val <= larger->val && larger->val < smaller->next->val) {
ListNode *q = larger->next;
larger->next = smaller->next;
smaller->next = larger;
smaller = smaller->next;
larger = q;
} else {
smaller = smaller->next;
}
}
if(larger) {
smaller->next = larger;
}
return result;
}
ListNode *sortList(ListNode *head) {
if(!head || !head->next) return head;
ListNode *slow = head;
ListNode *fast = head->next;
while(fast && fast->next) {
slow = slow->next;
fast = fast->next->next;
}
ListNode *rightP = slow->next;
slow->next = NULL;
head = sortList(head);
rightP = sortList(rightP);
return mergeSort(head, rightP);
}
};
相关推荐
Sort Colors LeetCode 125 Valid Palindrome LeetCode 167 Two Sum II - Input array is sorted LeetCode 344 Reverse String LeetCode 345 Reverse Vowels of a String 2 字符串 编号 题目 LeetCode 3 Longest ...
- 数组和链表:LeetCode中的基础题目通常涉及数组和链表操作,如“两数之和”(Two Sum)和“反转链表”(Reverse Linked List)。C++的`std::vector`和`std::list`是常用的容器,能方便地实现这些操作。 - 树形...
- Java中的`Collections.sort()`方法用于对List接口的实现进行排序,`Arrays.sort()`则适用于数组。 2. **搜索算法**: - 二分查找:在已排序的数组中寻找目标值,Java实现通常使用循环或递归。 - 广度优先搜索...
list:链表相关题目 stack:栈相关题目 queue:队列相关题目 string:字符串处理相关题目 tree:树相关题目 divide Conquer: 分治法相关题目 dynamic Programming:动态规划 graph:图论 greedy:贪心算法 recursion:...
leetcode 答案 leetcode Day 1 两数之和: 1。 考虑两层嵌套循环 2。...用dictionary以及 ...List[int], ...List[int]: ...List[int], ...List[int]: ...temp.sort() i=0 j=len(nums)-1 while i<j>target: j=j-1 elif (temp
最大公共字符串leetcode leetcode 数组 链表 二叉树 位操作 判断字符串的顺序排列 给定一个字符串数组,将字谜组合在一起。 例如,给定:["eat", "tea", "tan", "ate", "nat", "bat"], public class Solution { ...
C++标准库提供了一系列容器类,如std::vector、std::list、std::stack、std::queue、std::set、std::map等,它们为实现这些数据结构提供了便利。熟练掌握这些数据结构及其操作,是解决LeetCode题目的基础。 三、...
4. **数组与容器**:在 C++ 中,数组是最基础的序列数据结构,但标准模板库(STL)提供了更强大的容器,如 vector、list、deque 和 set 等。这些容器提供了便利的增删改查操作,以及迭代器进行遍历。 5. **字符串...
list 2017.06.13 打卡[LeetCode 200. Number of Islands], BFS 2017.06.14 打卡[LeetCode 3. Longest Substring Without Repeating Characters], N/A 2017.06.15 打卡[LeetCode 407. Trapping Rain Water II], BFS/...
例如,自定义链表节点类可以优化"Linked List"相关问题的性能,而模板可以用于创建通用的算法,如"Merge Sort"或"Quick Sort"。 此外,解题过程中还可能涉及到内存管理和异常处理,这些都是C++特有的挑战。通过阅读...
此外,对于数据结构,C++提供了标准模板库(STL),其中包括了容器(如vector、list、set、map)和算法,这些都是解决LeetCode问题时的利器。 例如,对于数组和链表问题,我们可能会用到迭代器、指针操作以及动态...
Sort & Search # Name Difficulty Solution index 1 直接插入 easy python :heart_suit: 2 简单选择排序 easy python :heart_suit: 3 冒泡排序 easy python :heart_suit: 4 希尔 easy python :heart_suit: 5 快排...
leetcode中325题python leetcode 以 参考 和 Hash相关 1_两数之和 387_字符串中的第一个唯一字符 链表操作 2 ...删除链表的倒数第N个节点 ...sort-list 234 回文链表 palindrome-linked-list 双指针遍历/滑动
1. 冒泡排序、选择排序、插入排序、快速排序、归并排序、堆排序等都是常见的排序算法,Python的内置sorted()函数和list.sort()方法可以快速完成排序任务。 2. 查找算法包括线性查找、二分查找、哈希查找等。二分查找...
Python的内置数据结构如list、dict、set、tuple等在解题时经常被用到。例如,你可以学习如何高效地使用这些数据结构来实现二分查找、回溯搜索、动态规划等算法。 2. **算法**:包括排序算法(快速排序、归并排序、...
例如,Reverse Linked List(反转链表)和Intersection of Two Linked Lists(两个链表的交集)等题目,都需要对链表进行操作。 3. 栈与队列:栈具有后进先出(LIFO)特性,队列则遵循先进先出(FIFO)原则。例如,...
LeetCodeLeetCode solutions(Java)树Minimum Depth of Binary Tree栈evaluate-reverse-polish-notation穷举max-points-on-a-line链表sort-list排序insertion-sort-list树binary-tree-postorder-traversal树binary-...
frequecy_sort.py: height_checker.py: Jewels_and_stones.py: last_stone_weight.py: Linked_list_cycle.py: long_pressed_name.py: max_69_number.py: max_array_sum_after_negations.py: max_depth_n_ary...
2. **C++语言特性**:在C++中,可以利用STL(标准模板库)中的容器(如vector、list、set、map)和算法来简化代码。例如,`std::sort`用于排序,`std::lower_bound`或`std::upper_bound`进行区间查找。同时,C++的...
2. **STL(Standard Template Library)**:STL 提供了容器(如 vector、list、set、map)、迭代器、算法和函数对象等组件,是 C++ 解决算法问题的强大工具。例如,可以使用 `std::sort` 进行排序,`std::find` 进行...