| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 600 人关注过本帖
标题:如何将链表逆顺序排序?
只看楼主 加入收藏
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
结帖率:38.67%
收藏
已结贴  问题点数:10 回复次数:3 
如何将链表逆顺序排序?
#include "stdafx.h"

#include "stdio.h"
#define NULL 0
struct student
{
    long num;
    float score;
    struct student * next;
};
int main(int argc, char* argv[])
{
    struct student a,b,c,*head,*p;    
    a.num=99101;a.score=89.5;
    b.num=99103;b.score=90;
    c.num=99107;c.score=85;
    head=&a;
    a.next=&b;
    b.next=&c;
    c.next=NULL;
    p=head;
    do//逆顺序排序该如何排,将链头当链尾
    {
        printf("%ld%5.1f\n",p->num,p->score);
        p=p->next;
    }while(p!=NULL);
    
    return 0;
}
搜索更多相关主题的帖子: 链表 顺序 
2009-07-22 09:55
NoSoul
Rank: 9Rank: 9Rank: 9
来 自:沈阳化工大学
等 级:蜘蛛侠
帖 子:283
专家分:1010
注 册:2009-6-6
收藏
得分:5 
链表没学,可能有错:
#include <stdio.h>
#define NULL 0
struct student
{
    long num;
    float score;
    struct student *next;
};
int main()
{
    struct student a,b,c,*head,*p;
    a.num=99101;a.score=89.5;
    b.num=99103;b.score=90;
    c.num=99107;c.score=85;
    head=&a;
    a.next=&b;
    b.next=&c;
    c.next=&a;
    p=head;
    do
    {
        p=p->next;
        printf("%ld%5.1f\n",p->num,p->score);
    }while(p->next!=&b);

    return 0;
}

我想伸手拉近點,竟觸不到那邊,就欠一點點,但這一點點...卻好遠
2009-07-22 10:15
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
收藏
得分:0 
回复 2楼 NoSoul
还是不对啊
2009-07-22 15:51
金多虾
Rank: 2
等 级:论坛游民
帖 子:153
专家分:99
注 册:2009-6-9
收藏
得分:5 
用三个指针就行啦!
2009-07-22 19:10
快速回复:如何将链表逆顺序排序?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016768 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved