首页 > 其他 > 详细

LeetCode OJ - Insertion Sort List

时间:2014-05-16 05:44:50      阅读:341      评论:0      收藏:0      [点我收藏+]

题目:

  Sort a linked list using insertion sort.

解题思路:

  假设 list[1..i]是排好序的,找到第i+1个元素应该插入的位置及其前驱,然后将其插入。

代码:

  

bubuko.com,布布扣
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode *insertionSortList(ListNode *head) {
        if (head == NULL || head->next == NULL) {
            return head;
        }
        
        /*找到最小的元素作为表头*/
        ListNode *p_tmp = head;
        int min_val = head->val;
        
        ListNode *p_current = head->next;
        while (p_current != NULL) {
            if (p_current->val < min_val) {
                p_tmp = p_current;
                min_val = p_current->val;
            }
            p_current = p_current->next;
        }
        p_tmp->val = head->val;
        head->val = min_val;
        
        ////////////////////////////////////////////////////////
        p_current = head->next;
        while (p_current != NULL){
            ListNode *p_next = p_current->next;

            ListNode *p_pos = head; //找插入位置
            while (p_pos != p_current && p_pos->next->val <= p_current->val) p_pos = p_pos->next;

            ListNode *p_pre = head;  // 找前驱
            while (p_pre->next != p_current) p_pre = p_pre->next;

            if (p_pos != p_current) {
                p_pre->next = p_current->next;
                p_current->next = p_pos->next;
                p_pos->next = p_current;
            }

            p_current = p_next;
        }
        return head;
    }
};
bubuko.com,布布扣

 

LeetCode OJ - Insertion Sort List,布布扣,bubuko.com

LeetCode OJ - Insertion Sort List

原文:http://www.cnblogs.com/dongguangqing/p/3726305.html

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