排序(线性表)

2020年1月17日 1090点热度 0人点赞 0条评论

排序(线性表)

时间: 1ms        内存:128M

描述:

(线性表)已知不带头结点的线性链表node,链表中结点构造为(data、next),其中data为数据域,next为指针域。请写一算法,将该链表按结点数据域的值的大小从小到大重新链接。

#include <stdio.h>
#include <stdlib.h>  //对应malloc函数
struct Node
{
    int data;
    struct Node *next;
};
struct Node *creat(struct Node *head)   //尾插建表
{
    int n,i;
    struct Node *current=NULL,*previous=NULL;
    head=NULL;
    scanf("%d",&n);
    for(i=1; i<=n; i++)
    {
        current=(struct Node*)malloc(sizeof(struct Node));
        scanf("%d",&current->data);
        current->next=NULL;
        if(i==1)
            head=current;    //链表头
        else
            previous->next=current;
        previous=current;
    }
    return head;
}
struct Node *sort(struct Node *head)    //插入排序
{
    struct Node *unsorted,*previous,*current,*sorted,*inserted;
    if(head==NULL)
        return NULL;
    unsorted=head->next; //剩余未排序链表
    head->next=NULL;    //摘下首结点
    sorted=head;        //已排序链表
    while(unsorted!=NULL)  //还有未排序结点
    {
        inserted=unsorted;   //当前插入结点
        unsorted=unsorted->next;
       
        current=sorted;
        while((current!=NULL)&&(current->data<inserted->data))
        {
            previous=current;
            current=current->next;
        }
        if(current==sorted)    //插入到链表的头部
            sorted=inserted;
        else
           /**************/

          添加代码

           /**************/

      }
    return sorted;
}
void destroy(struct Node *head)
{
 struct Node *p;
 while(head!=NULL)
 {
  p=head->next;
  delete(head);
  head=p;
 }
}
int main()
{
    struct Node *head=NULL;
    head=creat(head);
    head=sort(head);
    while(head!=NULL)
    {
        printf("%d ",head->data);
        head=head->next;
    }
    destroy(head);
    return 0;
}

输入:

输入链表长度:5

输入数据:10 22 9 8 6

输出:

6 8 9 10 22

示例输入:

7
11 3 8 9 44 26 55

示例输出:

3 8 9 11 26 44 55 

提示:

参考答案:

解锁文章

没有看到答案?微信扫描二维码可免费解锁文章

微信扫描二维码解锁

使用微信扫描二维码打开广告页面后可以立即关闭,再刷新此页面即可正常浏览此文章

所跳转广告均由第三方提供,并不代表本站观点!

已经扫描此二维码?点此立即跳转

code

这个人很懒,什么都没留下

文章评论