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

#include "stdio.h"
#include "string.h"
#include "stdlib.h"
#include "malloc.h"
#define NULL 0
#define LEN sizeof(struct student)
struct student
{
    long num;
    float score;
    struct student *next;
};

int main(int argc, char* argv[])
{
    struct student a,b,c,*head,*p;//如何查找b的前一个结点a,b的后一个结点c;按照下标值查找
    a.num=99101;a.score=89.5;
    b.num=99103;b.score=90;
    c.num=99105;c.score=91.5;
    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-08-21 09:16
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
收藏
得分:0 
这样还是运行不了?是不是代码我写错了?
#include "stdafx.h"#include "stdio.h"#include "string.h"#include "stdlib.h"#include "malloc.h"#define NULL 0#define LEN sizeof(struct student)struct student {    long num;    float score;    struct student *next;};int main(int argc, char* argv[]){    struct student a,b,c,*head,*p,*q;    a.num=99101;a.score=89.5;    b.num=99103;b.score=90;    c.num=99105;c.score=91.5;    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);    q=p->next.    while(q!=NULL&&q!=&b)    {          p=q;        q=q->next;    }    if(q==NULL)    {         return 0;    }    else    {            return p;    }     return 0;}
2009-08-21 10:00
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
收藏
得分:0 
#include "stdafx.h"
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
#include "malloc.h"
#define NULL 0
#define LEN sizeof(struct student)
struct student
{
    long num;
    float score;
    struct student *next;
};

int main(int argc, char* argv[])
{
    struct student a,b,c,*head,*p,*q;
    a.num=99101;a.score=89.5;
    b.num=99103;b.score=90;
    c.num=99105;c.score=91.5;
    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);

    q=p->next.
    while(q!=NULL&&q!=&b)
    {  
        p=q;
        q=q->next;
    }
    if(q==NULL)
    {
         return 0;
    }
    else
    {   
        return p;
    }
    return 0;
}
2009-08-21 10:00
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
收藏
得分:0 
程序还是运行不了
#include "stdafx.h"
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
#include "malloc.h"
#define NULL 0
#define LEN sizeof(struct student)
struct student
{
    long num;
    float score;
    struct student *next;
};

int main(int argc, char* argv[])
{
    struct student a,b,c,*head,*p,*q;
    a.num=99101;a.score=89.5;
    b.num=99103;b.score=90;
    c.num=99105;c.score=91.5;
    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);

    q=p->next;
    while(q!=NULL&&q!=&b)
    {  
        p=q;
        q=q->next;
    }
    if(q==NULL)
    {
         return 0;
    }
    else
    {   
         return 1;
    }
    return 0;
}
2009-08-21 10:17
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
收藏
得分:0 
那该如何修改代码呢?
2009-08-21 15:29
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
收藏
得分:0 
这样做还是不行,只能够查找出一个结点,有没有其他的做法?
2009-08-24 15:01
快速回复:如何查找结点?
数据加载中...
 
   



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

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