C实现单链表直接选择排序

/****************************
单链表直接选择排序
*******************************/
#include<stdio.h>
#include<stdlib.h>
struct node
{
    int num;
    struct node *next;
};
struct node *head=NULL;
cre_list() //初始化结点
{
    head = (struct node *)malloc(sizeof(struct node));
	head->num=0;
    head->next = NULL;
}
add_node(int num) //插入结点
{
    struct node *ptr = (struct node *)malloc(sizeof(struct node));
    ptr->num = num;
	ptr->next = head->next;
    head->next=ptr;
}

display_node() //遍历链表
{
    struct node *p = head->next;
    do
    {
        printf("%d\t",p->num);
        p = p->next;
    }while(p != NULL);
    printf("\n");
}

select_insert()
{
    int min=0;
	int tmp=0;
    struct node *p,*q,*M;
	p=q=M=head;
	while(p->next!=NULL)
	{
	    M=q=p->next;
		min=q->num;
		
		while(q!=NULL)
		{
		    if(q->num < min)
		    {
		        M=q;
				min=q->num;
		    }
			q=q->next;
		}
		if(p->next!=M)
		{
		    tmp=p->next->num;
			p->next->num=M->num;
			M->num=tmp;
		}
		p=p->next;
	}
}
	
int main()
{
    int i;
    int a[10]={23,41,77,12,98,25,6,97,55,38};
    cre_list();
    for(i=0;i<10;i++)
    {
        add_node(a[i]);
    }
    display_node();
	select_insert();
    display_node();
	
    return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值