论坛首页 编程语言技术论坛

sort link list

浏览 1197 次
锁定老帖子 主题:sort link list
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2013-10-13  

题目描述

对一个单链表原地(in-place)排序。即直接对链表结点排序。返回排序后链表的头结点。

链表结点的定义为(请不要在代码中再次定义该结构):

C/C++
struct ListNode {
    int val;
    ListNode *next;
}

渣做法!N^2

ListNode* insert(ListNode* head, ListNode* item) {
	if (item == NULL) return head;
    if (head == NULL) { item->next = NULL; return item; }
	if (item->val < head->val) { item->next = head; return item;}
	ListNode* prev = head, *cur = head->next;
	while (cur != NULL) {
		if (cur->val < item->val) prev = cur, cur = cur->next;
		else {
			prev->next = item;
			item->next = cur;
			return head;
		}
	}

	if (cur == NULL) { 
		prev->next = item;
		item->next = NULL;
	}
	return head;
}
ListNode* sortLinkList(ListNode *head) {
	if (!head) return head;

	ListNode *cur = head, *newhead = NULL, *next;
	while (cur != NULL) {
		next = cur->next;
		newhead = insert(newhead, cur);
		cur = next;
	}
	return newhead;
}

 

 

 

 

 

论坛首页 编程语言技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics