[Leetcode Week2]Sort List
Sort List题解
题目来源:https://leetcode.com/problems/sort-list/description/
Description
Sort a linked list in O(n log n) time using constant space complexity.
Solution
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
int partition(vector<int>& arr, int start, int end) {
int pivot = arr[start];
int low = start, high = end;
while (low < high) {
while (arr[low] <= pivot && low < high)
++low;
while (arr[high] > pivot && low < high)
--high;
swap(arr[low], arr[high]);
}
if (arr[low] > pivot)
--low;
arr[start] = arr[low];
arr[low] = pivot;
return low;
}
void quickSort(vector<int>& arr, int start, int end) {
if (start >= end)
return;
int pivotIndex = partition(arr, start, end);
quickSort(arr, start, pivotIndex - 1);
quickSort(arr, pivotIndex + 1, end);
}
ListNode* sortList(ListNode* head) {
if (head == NULL || head -> next == NULL) {
return head;
}
ListNode* temp = head;
vector<int> arr;
while (temp != NULL) {
arr.push_back(temp -> val);
temp = temp -> next;
}
quickSort(arr, 0, arr.size() - 1);
temp = head;
int i = 0;
while (temp != NULL) {
temp -> val = arr[i++];
temp = temp -> next;
}
return head;
}
};
解题描述
这道题考察的是链表排序。我首先想到的是把链表里面的元素拷贝到一个vector里面然后再快排,这就跟平时对数组快排的操作一样了,然后写起来也比较好写。但是AC之后觉得,2次拷贝元素的时间会不会有点多?而且还带来了额外的空间开销。于是自己还是写多了一个针对链表的快排:
class Solution {
public:
void swap(int& a, int& b) {
int t = a;
a = b;
b = t;
}
ListNode* partition(ListNode* low, ListNode* high) {
int key = low -> val;
ListNode *locNode = low; // the location node the that key will locate at last
for (ListNode* tempNode = low -> next; tempNode != high; tempNode = tempNode -> next) {
if (tempNode -> val < key) {
locNode = locNode -> next;
swap(locNode -> val, tempNode -> val);
}
}
swap(low -> val, locNode -> val);
return locNode;
}
void quickSort(ListNode* head, ListNode* tail) {
ListNode* posNode;
if (head != tail && head -> next != tail) { // left close, right open interval
posNode = partition(head, tail);
quickSort(head, posNode);
quickSort(posNode -> next, tail);
}
return;
}
ListNode* sortList(ListNode* head) {
quickSort(head, NULL);
return head;
}
};
但是实际跑出来结果却是(后提交的是用链表快排):
可能因为vector底层是用数组实现的,访问速度会比链表快一些,所以就算加上了拷贝元素的时间,总体的时间复杂度还是要低于直接对链表进行快排。
更优解法
2018.2.3更新
对链表来说,选择归并排序才是更明智的选择
- 链表无法像数组一样快速随机访问元素,要求排序算法元素访问次数较少且稳定
- 使用归并排序处理链表不需要像数组一样使用额外的内存,合并链表的时候只需要进行指针连接即可
下面给出链表递归归并排序的实现:
class Solution {
private:
ListNode* merge(ListNode* head1, ListNode* head2) {
ListNode tempHead(0);
ListNode *curNode = &tempHead;
while (head1 && head2) {
if (head1 -> val <= head2 -> val) {
curNode -> next = head1;
head1 = head1 -> next;
} else {
curNode -> next = head2;
head2 = head2 -> next;
}
curNode = curNode -> next;
}
while (head1) {
curNode -> next = head1;
head1 = head1 -> next;
curNode = curNode -> next;
}
while (head2) {
curNode -> next = head2;
head2 = head2 -> next;
curNode = curNode -> next;
}
return tempHead.next;
}
public:
ListNode* sortList(ListNode* head) {
if (!head)
return NULL;
if (head -> next == NULL)
return head;
if (head -> next -> next == NULL) {
if (head -> val <= head -> next -> val) {
return head;
} else {
ListNode *newHead = head -> next;
newHead -> next = head;
head -> next = NULL;
return newHead;
}
}
ListNode *mid = head, *tail = head;
while (tail && tail -> next) {
mid = mid -> next;
tail = tail -> next -> next;
}
ListNode* head2 = sortList(mid -> next);
mid -> next = NULL;
head = sortList(head);
return merge(head, head2);
}
};
[Leetcode Week2]Sort List的更多相关文章
- [Leetcode Week2]Sort Colors
Sort Colors题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/sort-colors/description/ Description Give ...
- C#版 - LeetCode 148. Sort List 解题报告(归并排序小结)
leetcode 148. Sort List 提交网址: https://leetcode.com/problems/sort-list/ Total Accepted: 68702 Total ...
- 待字闺中之快排单向链表;leetcode之Sort List
题目来源.待字闺中.原创@陈利人 .欢迎大家继续关注微信公众账号"待字闺中" 分析:思路和数据的高速排序一样,都须要找到一个pivot元素.或者节点. 然后将数组或者单向链表划分为 ...
- LeetCode——Insertion Sort List
LeetCode--Insertion Sort List Question Sort a linked list using insertion sort. Solution 我的解法,假设第一个节 ...
- [LeetCode] Wiggle Sort II 摆动排序
Given an unsorted array nums, reorder it such that nums[0] < nums[1] > nums[2] < nums[3]... ...
- [LeetCode] Wiggle Sort 摆动排序
Given an unsorted array nums, reorder it in-place such that nums[0] <= nums[1] >= nums[2] < ...
- [LeetCode] Insertion Sort List 链表插入排序
Sort a linked list using insertion sort. 链表的插入排序实现原理很简单,就是一个元素一个元素的从原链表中取出来,然后按顺序插入到新链表中,时间复杂度为O(n2) ...
- 【Leetcode】Sort List JAVA实现
Sort a linked list in O(n log n) time using constant space complexity. 1.分析 该题主要考查了链接上的合并排序算法. 2.正确代 ...
- [LeetCode] 148. Sort List 解题思路
Sort a linked list in O(n log n) time using constant space complexity. 问题:对一个单列表排序,要求时间复杂度为 O(n*logn ...
随机推荐
- Linux-Shell脚本编程-学习-5-Shell编程-使用结构化命令-if-then-else-elif
if-then语句 if-then语句格式如下 if comman then command fi bash shell中的if语句可鞥会和我们接触的其他if语句的工作方式不同,bash shell的 ...
- 系统学习Docker 践行DevOps理念
Docker代表的容器技术是近两年的大热技术,和人工智能.区块链等热点不同,容器技术的门槛并不高,每一个开发.测试.运维人员都能在日常工作中掌握和使用,是当今IT从业人员的必备技能之一.本课程会带大家 ...
- vs code 代码格式化整理
vs code格式化代码的快捷键如下:(来源于这里) On Windows Shift + Alt + F On Mac Shift + Option + F On Ubuntu Ctrl + Shi ...
- JSONP跨域jQuery处理整理(附天气数据实例)
写在前面 跨域的解决方案有多种,其中最常见的是使用同一服务器下的代理来获取远端数据,再通过ajax进行读取,而在这期间经过了两次请求过程,使得获取数据的效率大大降低,这篇文章蓝飞就为大家介绍一下解决跨 ...
- 查看lwjgl常用状态的值
在遇到状态值较多较复杂的情况,可以选择使用GL11.glIsEnabled()或者GL11.glGet()函数来查看状态机值,以下是常用值: public static void printOpenG ...
- PHP全局变量局部变量
http://www.w3school.com.cn/php/php_variables.asp
- Spring温故而知新 – bean的装配
Spring装配机制 Spring提供了三种主要的装配机制: 1:通过XML进行显示配置 2:通过Java代码显示配置 3:自动化装配 自动化装配 Spring中IOC容器分两个步骤来完成自动化装配: ...
- redis-20180118
1.redis hash 100% 2.redis list 100% 3.redis sentinel 20%
- [C/C++] C/C++中数字与字符串之间的转换
在C中: 方法: 1.C标准库中的sprintf, sscanf 2.C标准库还提供了 atoi, atof, atol, atoll(C++11标准) 函数将字符串转换成int,double, lo ...
- BZOJ4424/CF19E Fairy(dfs树+树上差分)
即删除一条边使图中不存在奇环.如果本身就是个二分图当然任意一条边都可以,先check一下.否则肯定要删除在所有奇环的交上的边. 考虑怎么找这些边.跑一遍dfs造出dfs树,找出返祖边构成的奇环.可以通 ...