| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 297 人关注过本帖
标题:帮忙修改一下这个队列吧,指出哪里错了,谢谢
取消只看楼主 加入收藏
weimanqing
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2012-4-30
结帖率:100%
收藏
已结贴  问题点数:5 回复次数:0 
帮忙修改一下这个队列吧,指出哪里错了,谢谢
#include<stdio.h>
#include<malloc.h>
typedef struct Qnode
{
    int data;
    struct  Qnode *next;
}Qnode;
   
typedef struct queue
{
   Qnode *rear;
   Qnode *front;
} queue,*queueptr;
   
int  EnQueue(queue*Q,int m)
{   
    int i;
    Qnode *q;
   
    for(i=1;i<=m;i++)
    {
           q=( Qnode*)malloc(sizeof( Qnode));
            printf("输入元素值:");
            scanf("%d",&q->data);
            q->next=NULL;
            Q->rear->next=q;
            Q->rear=q;
   
   
    }
    return 0;
}

int DeQueue(queue*Q)
{   
   
    printf("队头元素:");
    printf("%d",Q->front->data);
    free( Q->front);
    Q->front=Q->front->next;
    return 0;
}

void innitqueue(queueptr Q)
{
    Qnode* m;
    m=(Qnode*)malloc(sizeof( Qnode));
    Q->rear=Q->front=m;
    m->next=NULL;
}


int main()
{
    int m;
    queueptr Q;
    innitqueue(Q);
    printf("输入要插入的元素个数:");
    scanf("%d",&m);
    EnQueue(Q,m);
    DeQueue(Q);
    free(Q);
    return 0;
}
搜索更多相关主题的帖子: next include 元素 
2012-05-11 21:26
快速回复:帮忙修改一下这个队列吧,指出哪里错了,谢谢
数据加载中...
 
   



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

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