| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 333 人关注过本帖
标题:vc6.0 编译C2059要怎么改 有些说没定义不知道怎么定义
取消只看楼主 加入收藏
仗剑妖精
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2015-11-2
结帖率:0
收藏
已结贴  问题点数:10 回复次数:0 
vc6.0 编译C2059要怎么改 有些说没定义不知道怎么定义
#define N 5

typedef struct QNode{
    elemtype date;
    struct QNode *next;
}QNode,*Queueptr;

typedef struct{
    Queueptr front;
    Queueptr rear;
}Linkqueue;

Linkqueue initqueue(Linkqueue Q){
    Q.front = Q.rear = (Queueptr)malloc(sizeof(QNode));
    if(! Q.front) printf("OVERFLOW");
    Q.front->next=NULL;
    return OK;
}

Linkqueue enqueue(Linkqueue Q,int x){
    p=(Queueptr) malloc (sizeof(QNode));
    if(!p) printf("OVERFLOW");
    else{
    p->date=x;  p->next=NULL;
    Q.rear->next=p;
    Q.rear=p;}
    return OK;
}

Linkqueue dequeue(Linklist Q){
    int x;
    if(Q.front==Q.rear) printf("ERROR");
    else{
    p=Q.front->next;
    x=p->date;
    Q.front->next=p->next;
    }
    else if(Q.rear==p) Q.rear=Q.front;
    free(p);
    return Ok;
}


int main(){
    Linklist Q;
    int i,x,y;
    Q=initqueue(Q);
    printf("please intput create date:\n");

    for(i=1;i<=N;i++){
        scanf("%d",&x);
        Q=enqueue(Q,x);}

    printf("\nthe queue is: \n");
        for(i=1;i<=N;i++){
            printf("%d",i);}
   
    printf("\nplease input a insert date:\n");
    scanf("%d",&y);
    Q=enqueue(Q,y);
    printf("\nthe queue after insert is:\n");
        for(i=1;i<=N+1;i++){
            printf("%d",i);}
   
        Q=dequeue(Q);
        printf("\nthe queue after delete is:\n");
            for(i=1;i<=N;i++){
                printf("%d",i);}

}
搜索更多相关主题的帖子: return 
2015-11-02 20:33
快速回复:vc6.0 编译C2059要怎么改 有些说没定义不知道怎么定义
数据加载中...
 
   



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

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