zoukankan      html  css  js  c++  java
  • [leedcode 148] Sort List

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

    /**
     * Definition for singly-linked list.
     * public class ListNode {
     *     int val;
     *     ListNode next;
     *     ListNode(int x) { val = x; }
     * }
     */
    public class Solution {
       /* Like the merge sort, we can do recursively:
            (1) Split the list (slow fast pointers)
            (2) sort the first part (merge sort)
            (3) sort the second part (merge sort)
            (4) merge the two parts (merge two sorted lists)
            注意函数返回值
            */
        public ListNode sortList(ListNode head) {
            if(head==null||head.next==null) return head;
            ListNode p= mergeSort(head);
            return p;
        }
        public ListNode mergeSort(ListNode head){
            if(head==null||head.next==null) return head;
            ListNode mid=getMiddleNode(head);
            ListNode p=mid.next;
            mid.next=null;
            ListNode first=mergeSort(head);
            ListNode second=mergeSort(p);
            return mergeTwoLists(first,second);
        }
        public ListNode getMiddleNode(ListNode head){
            ListNode newHead=new ListNode(-1);
            newHead.next=head;
            ListNode fast=head;
            ListNode slow=newHead;
            while(fast!=null&&fast.next!=null){
                fast=fast.next.next;
                slow=slow.next;
                
            }
            return slow;
        }
        public ListNode mergeTwoLists(ListNode first,ListNode second){
            ListNode newHead=new ListNode(-1);
            ListNode p=newHead;
            while(first!=null&&second!=null){
                if(first.val<second.val){
                    p.next=first;
                    p=first;
                    first=first.next;
                }else{
                    p.next=second;
                    p=second;
                    second=second.next;
                }
            }
            if(first!=null){
                p.next=first;
            }
            if(second!=null){
                p.next=second;
            }
            return newHead.next;
            
        }
    }
  • 相关阅读:
    程序为什么加载到内存中
    cortex-A cortex-R cortex-M处理器的性能比较
    makefile 中的赋值方式
    python(老男孩全栈观后感------文件处理)
    python------lambda(匿名函数)
    python------filter(过滤器)
    Express深入解读
    nodejs安装
    一道有意思的题目
    charAt获取数组,测试
  • 原文地址:https://www.cnblogs.com/qiaomu/p/4694432.html
Copyright © 2011-2022 走看看