在链接列表上映射/缩小/过滤...在地图上失败! (在C中)

时间:2012-04-12 21:36:03

标签: c pointers mapreduce

所以这是我的代码......我的理解是我应该创建一个函数“map”,它将函数作为参数。它没有按计划进行。任何帮助都会非常棒。

这是一个可编译的(不可编译但缩小版)代码版本:

#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
int main(int argc, const char *argv[])
{
//it should be apparent that I am quite new to C, I have some java experience.
struct linkedList {
   int count;
   int num;
   struct linkedList *next;
};
struct linkedList *head, *tail, *curr;
int count1=0;
int i=0;

int square(int v) {return v=v*v;}

void map(int (*func)(int v), struct linkedList){
    struct linkedList2 *head, *tail, *curr;
    for(curr=head; curr!=NULL; curr=curr->next){
        curr->num=func(curr->num);
        printList();
    }
}

void start(){
    printf("This program will ONLY accept integer input.\n");
    head=NULL;
    for(i=1;i<=4;i++) {
        count1++;
        curr=malloc(sizeof(struct linkedList));
        curr->count=count1;
        printf("Enter a number: ");
        scanf("%d", &curr->num);
        if(head==NULL) { head=curr; }
        else { tail->next=curr; }
        tail=curr;
        tail->next=NULL;
    }
    printf("A list has been created.\n");
}

void printList(){
    printf("The list now contains these numbers: ");
    for(curr=head;curr!=NULL;curr=curr->next){
        printf("%d, ", curr->num);
    }
    printf("\n");
}

 start();
 printList();

 map(square, linkedList);
 printList();
 system("PAUSE");   
 return 0;
}

1 个答案:

答案 0 :(得分:1)

main中定义所有这些结构和函数不是你应该如何写C.在int main(int argc, const char *argv[]) {的定义之后将printList移到右边,以便{{ 1}}仅包含main的实际代码。

此外,您对main的定义似乎有一个未完成的原型。而不是map,其中第二个参数未使用,您需要void map(int (*func)(int v), struct linkedList)(然后在下一行中删除void map(int (*func)(int v), struct linkedList* head)的声明)。此外,head此处可能应更改为linkedList2。此外,您尝试使用linkedListmap中拨打main是没有意义的;你想使用map(square, linkedList)