| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 989 人关注过本帖
标题:Code::Blocks的编译问题,大家帮忙看看,谢谢
取消只看楼主 加入收藏
雾非雾
Rank: 2
等 级:论坛游民
帖 子:9
专家分:10
注 册:2011-2-11
结帖率:100%
收藏
已结贴  问题点数:10 回复次数:1 
Code::Blocks的编译问题,大家帮忙看看,谢谢
程序代码:
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#define elemtype int

typedef struct qnode{
    elemtype data;
    struct qnode *next;
}qnode,*queueptr;

typedef struct{
    queueptr front;
    queueptr rear;
}linkqueue;

int initqueue(linkqueue &q)
{
    q.front=q.rear=(queueptr)malloc(sizeof(qnode));
    if(!q.front)
        exit (0);
    q.front->next=NULL;
    return 1;
}

int enqueue(linkqueue &q,elemtype e)
{
    queueptr p;
    p=(queueptr)malloc(sizeof(qnode));
    if(!p)
        exit (0);
    p->data=e;
    p->next=NULL;
    q.rear->next=p;
    q.rear=p;
    printf("调用函数 : %d\n",q.rear->data);
    return 1;
}


int main(void)
{
    linkqueue l;
    int x;
    initqueue(l);
    printf("请输入元素 :");
    scanf("%d",&x);
    enqueue(l,x);
    printf("主函数 : %d",l.rear->data);
}


大家好,我刚学了数据结构,自己写了一段实验一下,Code::Blocks 10.05带MinGW-4.4.1.
编译的时候出错了...说的是(int initqueue(linkqueue &q)linkqueue enqueue(linkqueue &q,elemtype e))那两个引用符,可是如果去掉引用符的话,那就不能传递了,怎么办?
这段代码在CodeLite上编译成功MinGW-4.4.1,进队列也没问题...可就是CB下有问题,为什么会这样呢?大家帮忙看看,谢谢.

[ 本帖最后由 雾非雾 于 2011-11-17 12:41 编辑 ]
搜索更多相关主题的帖子: 谢谢 next 
2011-11-16 16:51
雾非雾
Rank: 2
等 级:论坛游民
帖 子:9
专家分:10
注 册:2011-2-11
收藏
得分:0 
回复 2楼 embed_xuel
这是C哦,不是C++
2011-11-16 22:47
快速回复:Code::Blocks的编译问题,大家帮忙看看,谢谢
数据加载中...
 
   



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

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