2016-03-16 61 views
0

我已经给出了一些用于实现链接列表的现有C代码(一个头文件和一些源代码),并且已经给了一个任务用它来实现一个队列。使用链接列表的现有实现来实现队列:错误的文件编号错误

这是我一直在考虑相关的功能描述中的头文件的一部分:

/* List is a pointer to a list_t struct */ 
typedef struct list_t* List; 

struct list_t { 
    void *data; 
    List next; 
}; 

/* Pushes data as the new head of list. May be used to create a new list: 
* new_list = push(NULL, data) */ 
extern List push(List list, void *data); 

/* Pop the head off the list */ 
extern void *pop(List *list); 

/* Return the length of the list */ 
extern int len(List list); 

/* Returns a reversed copy of list */ 
List reverse(List list); 

/* Prepend data to list and update list */ 
extern List prepend(List *list, void *data); 

/* Append l1 to the end of l2 */ 
void append(List l1, List *l2); 

/* Inserts data into the tail of list */ 
void insert(void *data, List *list); 

/* Inserts data into the tail of list or position equal to the next element  */ 
void insert_by(bool (*eq)(void *data, void *node), void *data, List *list); 

/* Inserts data into the tail of list. Returns true if sucessful, 
* false if it finds an element already equal to data */ 
bool insert_if(bool (*eq)(void *data, void *node), void *data, List *list); 

/* Returns the node equal to aim in list, returns NULL if not found */ 
extern List find(bool (*eq)(void *aim, void *node), void *aim, List list); 

/* Removes and returns the element equal to aim in list, 
* returns NULL if not found */ 
extern void *del(bool (*eq)(void *aim, void *node), void *aim, List *list); 

/* Returns a new list that passes the predicate p */ 
List filter(bool (*p)(void *data), List list); 

/* Print list to f by applying print to each node that is not NULL */ 
extern void print_list(void (*print)(FILE *f, void *data), FILE *f, List node); 

/* Free the memory allocated to each list node */ 
extern void free_list(List node); 

我知道,为了实现一个队列,我需要至少两个功能,enqueue()dequeue()。我继续创建了这些功能和队列的类型定义我自己的头文件,使用列表类型从上面的头文件:

//Queue.h 
#include "list.h" 

typedef List Queue; 

//Add item to queue... 
void enqueue(Queue q, void *data); 

//removes and returns an item from the queue... 
void dequeue(Queue *q); 

然后我继续在queue.c实现的源代码。我只为实现enqueue现在,因为我想确保它在移动之前的工作:

#include "queue.h" 

void enqueue(Queue q, void *data){ 
    if (q == NULL){ 
     q = push(q, data); 
    } 
    else { 
     insert(data, &q); 
    } 
} 

真不简单,我知道了。我打算用下面的文件,main.c所测试的队列:

#include <stdio.h> 
#include "queue.h" 

int main(int argc, char **argv){ 
    Queue q = NULL; 
    int i; 
    for (i = 0; i < 10; i++){ enqueue(q, &i); } //one line for brevity 
    return 0; 
} 

在这一点上我不希望看到任何输出,当我跑main.c,所有我的预期是该方案与没有错误运行然后停下来。一切编译正常,但是当我跑main.c所有我得到的是:

sh: ./main.exe: bad file number 

这是什么意思和任何人可以查明这可能是造成这个问题呢?

编辑:源代码被编译为这样:

gcc -c list.c 
gcc -c queue.c 
gcc -c main.c -o main.exe 
+0

请问你可以像这样编译 - > gcc list.c queue.c main.c -o main .exe –

回答

0

这不完全是关于C编程问题,但对不正确调用编译器COMMANDE。

您的编译命令不完整。

使用此:

gcc -c list.c 
gcc -c queue.c 
gcc -c main.c 
gcc list.o main.o queue.o -o main.exe 
./main.exe 

说明:

gcc -c list.c       produces list.o 
gcc -c queue.c       produces queue.o 
gcc -c main.c       produces main.o 
gcc list.o main.o queue.o -o main.exe invokes the linker that links the .o files 
             together producing main.exe 

./main.exe        run the program 

有可能是在你的C代码,其他编程相关的问题。

0

您的enqueue功能打破push方法的合同。

push方法返回新的头。

你将需要:

Queue enqueue(Queue q, void *data){ 
    return push(q, data); 
} 

而且在您的来电:

for (i = 0; i < 10; i++){ 
    q = enqueue(q, &i); 
} 

但请注意,这将推动相同的指针每次迭代。如果更改i,您将更改队列中每个节点的值。这可能不是你想要的!

另请注意,排队本地(自动)变量的地址可能是一件坏事,当变量超出范围时可能会导致堆栈问题。 (在你的情况下,imain中声明,所以在程序结束之前它不会超出范围。)

+0

我继续前进并更改了'enqueue'函数,但它仍不会将元素添加到队列中。你能看到这个问题吗? – JavascriptLoser

+0

添加第一个元素时,队列的头部从“NULL”更改为第一个队列项目。您需要以某种方式更新队列指针。我建议你返回新的地址,但是你还没有这样做,所以'main'中'q'的值永远不会从最初的'NULL'值改变。 –