| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 786 人关注过本帖
标题:用队列求杨辉三角,求大神指错
取消只看楼主 加入收藏
飞黄腾达
Rank: 2
等 级:论坛游民
帖 子:46
专家分:27
注 册:2013-3-14
结帖率:29.41%
收藏
已结贴  问题点数:13 回复次数:2 
用队列求杨辉三角,求大神指错
#include<stdio.h>
#include<stdlib.h>
typedef struct node{
    int data;
    struct node *next;
}snode,*psnode;
typedef struct{
    psnode front,rear;
}Linkqueue,*pLinkqueue;
pLinkqueue creat();
void In_queue(int x,pLinkqueue Qu);
int push_queue(pLinkqueue q);
void get_queue(pLinkqueue que,int *y);
int empty(pLinkqueue q);
void Yanghui(pLinkqueue Q);
pLinkqueue creat_queue();
pLinkqueue creat_queue()
{
    pLinkqueue q;
    q=(pLinkqueue)malloc(sizeof(pLinkqueue));
    if(q)
    {
        q->front=NULL;
        q->rear=NULL;
    }
  return q;
}
void In_queue(int x,pLinkqueue Qu)
{
    psnode p;
   
    p=(psnode)malloc(sizeof(psnode));
    if(!p)
    {
        printf("内存溢出\n");
    }
    p->data=x;
    if(!empty(Qu))
    {
        Qu->front=p;
        Qu->rear=p;
    }
    else
    {
        Qu->rear->next=p;
        Qu->rear=p;
    }
}
int push_queue(pLinkqueue q)
{
    int x;
    psnode p;

   
        p=q->front;
        x=q->front->data;  
        q->front=q->front->next;
        free(p);
   
    return x;
}
void get_queue(pLinkqueue q,int *y)
{

    *y=q->front->data;

}
int empty(pLinkqueue q)
{
    if(q->front==q->rear)
        return 0;
    else return 1;
}

void Yanghui(pLinkqueue Q)
{
    int a,b,n,i;
    In_queue(0,Q);
    In_queue(1,Q);
    In_queue(0,Q);
    printf("列数为:\n");
    scanf("%d",&n);
    for(i=0;i<n;i++)
    {
        a=push_queue(Q);
        get_queue(Q,&b);
        In_queue(a+b,Q);
        printf("%d\t",a);
        if(b==0)
        {
            In_queue(0,Q);
            printf("\n");
        }
    }
}



int main()
{
    pLinkqueue Q;
    Q=creat_queue();
    Yanghui(Q);
}
我调试就在void get_queue(pLinkqueue q,int *y)
{

    *y=q->front->data;

}读取队头数据出错,一头雾水,谁能告诉我哪里错了
搜索更多相关主题的帖子: void next 杨辉三角 include 
2013-04-10 20:26
飞黄腾达
Rank: 2
等 级:论坛游民
帖 子:46
专家分:27
注 册:2013-3-14
收藏
得分:0 
有谁知道呀
2013-04-11 15:55
飞黄腾达
Rank: 2
等 级:论坛游民
帖 子:46
专家分:27
注 册:2013-3-14
收藏
得分:0 
回复 4楼 菜鸟成长记11
谢谢,我就是想搞清楚我错在哪里,大神看得出来吗
2013-04-17 22:39
快速回复:用队列求杨辉三角,求大神指错
数据加载中...
 
   



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

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