chhgk1995 2015-10-17 06:14 采纳率: 100%
浏览 3269
已采纳

c语言编译 出现error C2061 和error C2059

图片说明

不知道为什么一直出现说我标识符有问题的提示,我看了下以前编的程序,好像也是这样写法的啊,不知这次怎么会这样。求各位大神相助。

 #include <stdio.h>
#include <stdlib.h> 

struct Jihe{
    char nodeSet;
    struct Jihe* next;
};

bool Initiate(struct Jihe** head){
    *head = (struct Jihe*)malloc(sizeof(struct Jihe));
    (*head)->next = NULL;
    return 1;
}

bool RecordSet(struct Jihe* head,char text[]){
    struct Jihe* set = head;
    int i = 0;
    while(text[i] != '\0'){
        set->next = (struct Jihe*)malloc(sizeof(struct Jihe));
        set->next->nodeSet = text[i];
        i++;
        set = set->next;
    }
    set->next = NULL;
    RankSet(&head);
    return 1;
}

bool GetAnd(struct Jihe* head1,struct Jihe* head2,struct Jihe** result){
    struct Jihe *set1 = head1,*set2 = head2,*set3 = *result;
    while(set1->next != NULL && set1->next->next != NULL){
        set3->next = (struct Jihe*)malloc(sizeof(struct Jihe));
        set3->next->nodeSet = set1->next->nodeSet;
        set3 = set3->next;
        set1 = set1->next;
    }
    while(set2->next->next != NULL){
        set3->next = (struct Jihe*)malloc(sizeof(struct Jihe));
        set3->next->nodeSet = set2->next->nodeSet;
        set3 = set3->next;
        set2 = set2->next;
    }
    set3->next = NULL;
    RankSet(result);
    return 1;
}

bool GetCross(struct Jihe** head1,struct Jihe** head2){
    return 1;
}

bool GetDiffer(struct Jihe** head1,struct Jihe** head2){
    return 1;
}

bool RankSet(struct Jihe** head){
    char rankSet[20] = {0};
    int i = 0 ,j = 0,len = 0;//len记录集合大小
    int small = 0, move;//move是用来删除元素的;
    char temp;
    struct Jihe* set = *head;
    struct Jihe* newSet = NULL;
    if(set == NULL){
        printf("空链表\n");
        return 0;
    }
    while(set->next != NULL && set->next->next != '\0'){
        rankSet[i] = set->next->nodeSet;
        set = set->next;
        len++;
    }

    for(i = 0;i < len; i++){
        for(j = i+1;j < len;j++){
            //删除子串中相同的元素
            if(rankSet[i] == rankSet[j]){
                //当这个元素为最后一个时,将终止符前移
                for(move = j; move <= len-1; move++){
                    rankSet[move] = rankSet[move+1]; 
                }
                len--;
            }
            if((rankSet[small] > rankSet[j]) && rankSet[j] != '\0' )
                small = j;
        }
        if(rankSet[small] == '\0')
            break;
        temp = rankSet[small];
        rankSet[small] = rankSet[i];
        rankSet[i] = temp;
    }
    newSet = (struct Jihe*)malloc(sizeof(struct Jihe));
    head = &newSet;
    for(i = 0;i < len;i++){
        newSet->next = (struct Jihe*)malloc(sizeof(struct Jihe));
        newSet->next->nodeSet = rankSet[i];
        newSet = newSet->next;
    }
    newSet->next = NULL;
    return 1;
}

bool GetSet(struct Jihe* head,char nowSet[]){
    struct Jihe*p = head;
    int i = 0;
    nowSet = {0};
    while(p->next != NULL && p->next->next != NULL){
        nowSet[i] = p->next->nodeSet;
        p = p->next;
        i++;
    }
    return 1;
}





void main(){
    struct Jihe *set1;
    struct Jihe *set2;
    struct Jihe *result;
    char text[20] = {0};
    Initiate(&set1);
    Initiate(&set2);
    Initiate(&result);
    printf("Set1 = :");
    scanf("%s",text);
    RecordSet(set1,text);
    printf("Set2 = ");
    scanf("%s",text);
    RecordSet(set2,text);
    printf("Set1 ∪ Set2 = ");


}

展开全部

  • 写回答

2条回答 默认 最新

  • chhgk1995 2015-10-17 22:55
    关注

    返回类型不行。或许是c语言没有bool型(忘了到底有没有了),该为int就没事了

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥100 有能够实现人机模式的c/c++代码,有图片背景等,能够直接进行游戏
  • ¥20 校园网认证openwrt插件
  • ¥15 以AT89C51单片机芯片为核心来制作一个简易计算器,外部由4*4矩阵键盘和一个LCD1602字符型液晶显示屏构成,内部由一块AT89C51单片机构成,通过软件编程可实现简单加减乘除。
  • ¥15 求GCMS辅导数据分析
  • ¥30 SD中的一段Unet下采样代码其中的resnet是谁跟谁进行残差连接
  • ¥15 Unet采样阶段的res_samples问题
  • ¥60 Python+pygame坦克大战游戏开发实验报告
  • ¥15 R语言regionNames()和demomap()无法选中中文地区的问题
  • ¥15 Open GL ES 的使用
  • ¥15 我如果只想表示节点的结构信息,使用GCN方法不进行训练可以吗
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部