程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 148. Sort List,148sortlist

148. Sort List,148sortlist

編輯:JAVA綜合教程

148. Sort List,148sortlist


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

代碼如下:

 1 /**
 2  * Definition for singly-linked list.
 3  * public class ListNode {
 4  *     int val;
 5  *     ListNode next;
 6  *     ListNode(int x) { val = x; }
 7  * }
 8  */
 9 public class Solution {
10     public ListNode sortList(ListNode head) {
11         if(head==null||head.next==null)
12         return head;
13         
14         ListNode p=head;
15         int count=0;
16         
17         while(p!=null)
18         {
19             count++;
20             p=p.next;
21         }
22         int[]a=new int[count];
23         int c=count;
24         p=head;
25        for(int i=0;i<count;i++)
26        {
27            if(p!=null)
28            a[i]=p.val;
29            p=p.next;
30        }
31        p=head;
32        
33         Arrays.sort(a);
34         for(int i=0;i<c;i++)
35         {
36             p.val=a[i];
37             p=p.next;
38         }
39         return head;
40     }
41 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved