我有两个文件,list_funcs.c和list_mgr.c。List_funcs.c有一个将节点插入链表的函数:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
struct data_node {
char name [25];
int data;
struct data_node *next;
};
struct data_node * insert (struct data_node **p_first, int elem) {
struct data_node *new_node, *prev, *current;
current=*p_first;
while (current != NULL && elem > current->data) {
prev=current;
current=current->next;
} /* end while */
/* current now points to position *before* which we need to insert */
new_node = (struct data_node *) malloc(sizeof(struct data_node));
new_node->data=elem;
new_node->next=current;
if ( current == *p_first ) /* insert before 1st element */
*p_first=new_node;
else /* now insert before current */
prev->next=new_node;
/* end if current == *p_first */
return new_node;
};
现在我正试图从list_mgr.c调用这个函数,但得到错误"太少的参数函数'insert' ":
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "list_funcs.h"
int main (void) {
struct data_node *first, *new_node, *ptr;
printf("Insert first node into listn");
first=ptr=insert(&first, 5);
strcpy(ptr->name,"Alexander");
return 0;
}
为什么我得到"太少的参数"错误,我如何正确调用它?
头文件list_function .h包含:
#define STRINGMAX 25
struct data_node {
char name [STRINGMAX];
int data;
struct data_node *next;
};
struct data_node * insert (struct data_node **, int, char *);
你对insert
的定义是这样的:
struct data_node * insert (struct data_node **p_first, int elem)
但是头文件中的声明是这样的:
struct data_node * insert (struct data_node **, int, char *);
注意末尾的char *
。你可能需要删除它使它匹配
函数有三个参数,您只传递了前两个。
struct data_node * insert (struct data_node **, int, char *);
要求传递一个指针给data_node*
类型,然后是int
类型,最后是char*
类型。
令人困惑的是,您的函数定义也与声明不匹配,定义中省略了最后一个char*
。
你的函数原型在list_func.h
有一个额外的参数:
struct data_node * insert (struct data_node **, int, char *);
/* one of these doesn't belong: ^ ^ */
所以list_mgr.c
中的函数定义和list_funcs.c
中的调用是匹配的,而list_func.h
中的原型则不匹配。