文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>选择排序用链表实现(代码)

选择排序用链表实现(代码)

时间:2010-09-06  来源:lovecreat




#include <stdio.h>

#include <stdlib.h>

#define N 10

typedef struct node *Link;

struct node{

    int item;

    Link next;

}

Link NODE(int item, Link next)

{

   link t=malloc(sizeof *t);

   t->item = item;

   t->next = next;

   return t;

}


void show_list(link head)

{

 link t;

 for(t=head->next; t; t->next)

     printf("%3d", t->item);

printf("/n");

}

Link init_list()

{

 int i; Link t = NULL;

 for(i=0; i<=N; i++) t=NODE(rand()%100, t);

 return t;

}


Link selection_sort(Link head)

{

 link s=NULL, t, max;

 while(head->next)

{

  for(max=head, t=max->next; t->next; t=t->next)

         if(t->next->item > max->next->item) max = t;

   t=max->next; max->next=t->next;

   t->next=s; s=t;

}

head->next = s;

return head;

}


int main(void)

{

 Link head=init_list();

 show_list(head);

 head=selection_sort(head);

 show_list(head);

 return 0;

}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载