码迷,mamicode.com
首页 > 编程语言 > 详细

编程实现单链表的排序

时间:2015-07-31 23:41:47      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:

node *sort(node *head)
{
node *p, *p2, *p3;
int n;
int temp;
n = length(head);
if (head == NULL || head->next == NULL)
return head;
p = head;
for (int j = 1; j < n; ++j)
{
p = head;
for (int i = 0; i < n - j; ++i)
{
if (p->data>p->next->data)
{
temp = p->data;
p->data = p->next->data;
p->next->data = temp;
}
p = p->next;
}
}
return head;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

编程实现单链表的排序

标签:

原文地址:http://blog.csdn.net/wangfengfan1/article/details/47176029

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!