【LeetCode】Sort List

题目

Sort a linked list in O(n log n)
time using constant space complexity.

解答

O(nlogn)时间复杂度的排序有快排、堆排、归并,一般双向链表用快排、单向链表用归并,堆排两种都可以,以下使用归并排序:

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */

//归并排序
public class Solution {
    public ListNode sortList(ListNode head) {
        if(head==null||head.next==null){
        	return head;
        }else{
        	//快慢指针找到中间点
        	ListNode fast=head;
        	ListNode slow=head;
        	while(fast.next!=null&&fast.next.next!=null){
        		fast=fast.next.next;
        		slow=slow.next;
        	}
        	fast=slow;             //注意修改fast和slow的值,若当其为一个节点时,就不会调用sortList
        	slow=slow.next;
        	fast.next=null;
        	fast=sortList(head);  //前半段排序
        	slow=sortList(slow);  //后半段排序
        	return mergeArray(fast,slow);
        }
    }

    ListNode mergeArray(ListNode list1,ListNode list2){
    	if(list1==null){
    		return list2;
    	}
    	if(list2==null){
    		return list1;
    	}
    	ListNode mergeList=null;
    	if(list1!=null&&list2!=null){
    		if(list1.val<list.val){
    			mergeList=list1;
    			list1=list1.next;
    			mergeList.next=null;
    		}else{
    			mergeList=list2;
    			list2=list2.next;
    			mergeList.next=null;
    		}
    	}
    	ListNode tempList=mergeList;
    	while(list1!=null&&list2!=null){
    		if(list1.val<list2.val){
    			tempList.next=list1;
    			list1=list1.next;
    			tempList=tempList.next;
    			tempList.next=null;
    		}else{
    			tempList.next=list2;
    			list2=list2.next;
    			tempList=tempList.next;
    			tempList.next=null;
    		}
    	}
    	if(list1!=null){
    		tempList.next=list1;
    	}
    	if(list2!=null){
    		tempList.next=list2;
    	}
    	return mergeList;
    }
}

---EOF---

时间: 2024-12-09 07:34:44

【LeetCode】Sort List的相关文章

【LeetCode】Sort Colors

LeetCode OJ Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers 0, 1, and 2 to represent the color red, w

【LeetCode】Sort Colors 解题报告

[题目] Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers 0, 1, and 2 to represent the color red, white, a

【LeetCode】 sort list 单链表的归并排序

题目:Sort a linked list in O(n log n) time using constant space complexity. 思路:要求时间复杂度O(nlogn) 知识点:归并排序,链表找到中点的方法 存在的缺点:边界条件多考虑!!! /** * LeetCode Sort List Sort a linked list in O(n log n) time using constant space complexity. * 题目:将一个单链表进行排序,时间复杂度要求为o

【Leetcode】Sort List JAVA实现

Sort a linked list in O(n log n) time using constant space complexity. 1.分析 该题主要考查了链接上的合并排序算法. 2.正确代码实现 package com.edu.leetcode; import com.edu.leetcode.ListNode; public class SortList { /** * @param args */ public ListNode Merge(ListNode first,List

【LeetCode】Sort Colors 数组排序

题目:Sort color <span style="font-size:18px;">/*LeetCode sort colors 题目:输入一个数组,包含0,1,2分别代表红白蓝三种颜色,要求按照0,1,2的顺序,将同类颜色的连续排列 思路:计数排序,是一个遍历两遍的方法:可以先统计每种的数量,之后直接将这一范围内的所有值都赋值为相应的数字即可 遍历一遍的话可以在遍历的同时分别与0和2比较,从头和尾一起交换,1的在中间不用做处理: * */ package javaTr

【Leetcode】Sort List in java,你绝对想不到我是怎么做的^^我写完过了我自己都觉得好jian~

Sort a linked list in O(n log n) time using constant space complexity. 大家看完题目估计跟我一样啦...都在想哪些是nlogn啊~快速排序.归并排序.堆排序!然后开始愁,这些东西变成list了可怎么办啊... 可是我深深地记得在CMU的时候老师告诉我,java现在自带的Arrays.sort用的是快排,然后我就想,那么--为什么不把list转成array然后排完了放回去呢! 于是我就用一个arraylist先装这个list,然

【leetcode】Sort Colors(middle)☆

Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers 0, 1, and 2 to represent the color red, white, and bl

【Leetcode】Sort List解答

一.原题 Sort List Sort a linked list in O(n log n) time using constant space complexity. 二.分析 快速排序和归并排序的时间复杂度是O(nlogn).如果使用归并排序,在使用链表的情况下,不需要重新申请空间存放排序后的数组,可以做到空间复杂度数O(1).我在这里使用归并排序来排序链表. 三.代码(java) <pre name="code" class="java">/**

【LEETCODE】:Sort Characters By Frequency

声明:该题目来自https://github.com/soulmachine, 一.Remove Duplicates from Sorted Array Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for another array, you mu