Chinaunix首页 | 论坛 | 博客
  • 博客访问: 584703
  • 博文数量: 92
  • 博客积分: 5026
  • 博客等级: 大校
  • 技术积分: 1321
  • 用 户 组: 普通用户
  • 注册时间: 2008-02-28 11:04
文章分类

全部博文(92)

文章存档

2011年(9)

2010年(17)

2009年(12)

2008年(54)

我的朋友

分类: C/C++

2008-09-09 14:09:03

写了一个单链表的排序算法(选择排序,交换指针)
交换指针很是麻烦,而且效率也不高,需要经常排序的东西最好不要用链表来实现
 

#include "stdio.h"
#include "stdlib.h"
#include "string.h"
 
 
struct student {
        int score;
        struct student *next;
};
 
 
struct student* create_link() {
 
        struct student *head = NULL;
        struct student *tail = NULL;
        int score;
        while(1) {
                scanf("%d", &score);
                if(score <= 0)break;
                struct student *now = (struct student*)malloc(sizeof(struct student));
                now->score = score;
                now->next = NULL;
                if(head == NULL) {
                        head = tail = now;
                } else {
                        tail->next = now;
                        tail = now;
                }
        }
        printf("create link success\n");
        return head;
}
 
void display_link(const struct student *link) {
 
        const struct student *p = link;
        for(; NULL;p=p->next) {
                printf("%d\t", p->score);
        }
        printf("\n");
}
 
//select sort and switch point instead of switch data

void sort_link(struct student **head) {
 
        struct student *link = *head;
 
        struct student *pre_p1;
        struct student *pre_p2;
        struct student *min;
 
        struct student *p1;
        for(p1=link; p1->next!=NULL; pre_p1=min,p1=min->next) {
                min = p1;
                struct student *p2;
                for(p2=p1; p2->next!=NULL; p2=p2->next) {
                        if(p2->next->score < min->score) {
                                pre_p2 = p2;
                                min = p2->next;
                        }
                }
                if(min == p1) {
                        printf("no need sort\n", p1->score);
                        continue;
                }
                //head or not head

                if(p1 == *head) {
                        *head = min;
                } else {
                        pre_p1->next = min;
                }
                //switch point

                struct student *temp = min->next;
                if(p1->next == min) { //p1 and min link directly

                        min->next = p1;
                        p1->next = temp;
                } else { //p1 and min link indirectly

                        min->next = p1->next;
                        pre_p2->next = p1;
                        p1->next = temp;
                }
 
                printf("sort:\t", p1->score);
                display_link(*head);
        }
}
 
int main() {
        struct student *link = create_link();
        sort_link(&link);
        printf("\nafter sort link:\n");
        display_link(link);
        return 0;
}

阅读(7461) | 评论(7) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2011-03-23 09:39:43

你这个error也太多了吧

chinaunix网友2009-01-11 22:05:37

根本的原因: c的参数传递都是值传递!不管是普通或者指针或者二级指针. 程序要多写 .自然就会了

chinaunix网友2009-01-07 22:23:52

void sort_link(struct student **head) ; 这个里边的形参为什么用两个 '*' 号呢?

chinaunix网友2009-01-07 22:23:52

void sort_link(struct student **head) ; 这个里边的形参为什么用两个 '*' 号呢?

chinaunix网友2009-01-07 22:23:51

void sort_link(struct student **head) ; 这个里边的形参为什么用两个 '*' 号呢?