首页 > 其他 > 详细

147. Insertion Sort List

时间:2017-02-02 12:02:26      阅读:159      评论:0      收藏:0      [点我收藏+]

Sort a linked list using insertion sort.

此题需要设置四个ListNode,第一个是pre,第二个是dummy,第三个是cur,第四个是next;其中插入排序就是说每次从表头开始遍历,当遍历到pre的next的val大于cur的val的时候,把cur插在pre和pre.next之间,next的作用是把带排序的元素头cur的next赋值给next,以便每次都可以让cur遍历下去。代码如下:

/**

 * Definition for singly-linked list.

 * public class ListNode {

 *     int val;

 *     ListNode next;

 *     ListNode(int x) { val = x; }

 * }

 */

public class Solution {

    public ListNode insertionSortList(ListNode head) {

        ListNode dummy = new ListNode(0);

        ListNode cur = head;

        ListNode pre = dummy;

        ListNode next = null;

        while(cur!=null){

            next = cur.next;

            while(pre.next!=null&&pre.next.val<cur.val){

                pre = pre.next;

            }

            cur.next = pre.next;

            pre.next = cur;

            pre = dummy;

            cur = next;

        }

        return dummy.next;

    }

}

 

147. Insertion Sort List

原文:http://www.cnblogs.com/codeskiller/p/6361034.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!