标题:一个病人看病的程序,始终有错误,请高手指点!
取消只看楼主
青密
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-5-13
结帖率:0
已结贴  问题点数:20 回复次数:0 
一个病人看病的程序,始终有错误,请高手指点!
#include <stdio.h>
#include <malloc.h>
typedef struct qnode{
    int data;
    struct qnode *next;
}qnode, *queueptr;   //结点类型;
typedef struct {
    queueptr front;
    queueptr rear;
}linkqueue;             // 链队类型;


void initqueue(linkqueue &q){

   
    q->front=q->rear=(queueptr)malloc(sizeof(qnode));    //创建空队;
    if (!q->front) exit(-2);
    q->front->next =NULL;
}
void main()
{
    int no=0;
    linkqueue *q;
    initqueue(&q);
    qnode *p;
    printf("输入病历号: \n");
    scanf("%d",&no);
    p=(queueptr)malloc(sizeof(qnode));   //创建结点;
            p->data =no;
            p->next =NULL;
            if(q->rear ==NULL)       //第一个病人排队;
            {
                q->front =q->rear =p;
            }
            else{
                q->rear ->next =p;
                q->rear =p;
            }
            printf("出现\n");
}
搜索更多相关主题的帖子: 看病 include 
2011-05-13 15:47



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-339734-1-1.html




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

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