我正在尝试创建一个基于我已经创建的链表库的队列库。特别是我在向链表添加新节点后更新队列结构中的尾指针时遇到麻烦。
链表结构:
struct listNode {
int nodeLength;
int nodeValue;
struct listNode *next;
};
typedef struct listNode node;
队列结构:
struct QueueRecord {
node *list;
node *front;
node *back;
int maxLen;
};
typedef struct QueueRecord queue;
所以这是我在队列库中的add函数
void add(queue currentQueue, int data){
addTail(currentQueue.list, data, data+5);
currentQueue.back = currentQueue.back->next;
}
和链表库中的addTail函数
void addTail (node *head, int value, int length) {
node *current = head;
node *newNode = (struct listNode *)malloc(sizeof(node));
newNode = initNode(value, length);
while (current->next != NULL)
current = current->next;
newNode->next = NULL;
current->next = newNode;
}
所以我的问题再次是尾部指针没有设置到列表中的最后一个节点。它与头指针保持在同一个位置。我已经研究了几个小时,试图看看我是否只是缺少一些小东西,但我找不到它。如果需要更多的代码或解释来理解我的问题,我可以提供它。
如何创建队列:
queue createQueue(int maxLen){
queue newQueue;
newQueue.list = createList();
newQueue.front = newQueue.list;
newQueue.back = newQueue.list;
newQueue.maxLen = maxLen;
return newQueue;
}
node *createList (){
node *head = NULL;
head = (struct listNode *)malloc(sizeof(node));
head->next = NULL;
return head;
}
node *initNode (int value, int length){
node *newNode = NULL;
newNode = (struct listNode *)malloc(sizeof(node));
newNode->nodeValue = value;
newNode->nodeLength = length;
newNode->next = NULL;
return newNode;
}
答案 0 :(得分:2)
void add(queue currentQueue, int data){
您正在将queue
结构的副本传递给add
,因此只会更改副本的成员。您需要将queue*
传递给该函数才能更改queue
本身的成员。
void add(queue *currentQueue, int data){
if (currentQueue == NULL) {
exit(EXIT_FAILURE);
}
addTail(currentQueue->list, data, data+5);
currentQueue->back = currentQueue->back->next;
}
并将其称为add(&your_queue);
在addTail
函数中,您应该检查head
是否也是NULL
。
并且
node *newNode = (struct listNode *)malloc(sizeof(node));
newNode = initNode(value, length);
在addTail
中,你有一个严重的问题。使用作业newNode = initNode(value, length);
,您将失去对刚刚malloc
内存的引用。
如果initNode
malloc
是一大块内存,那么“只是”内存泄漏,那么您应该删除malloc
中的addTail
。
否则,我担心initNode
返回局部变量的地址,àla
node * initNode(int val, int len) {
node new;
new.nodeValue = val;
new.nodeLength = len;
new.next = NULL;
return &new;
}
如果initNode
看起来与此类似,那么会导致问题,因为一旦函数返回,地址就会变为无效。但是如果initNode
看起来那样,你的编译器应该警告过你。
无论如何,在没有看到initNode
的代码的情况下,我无法诊断原因。
但是,如果您将addTail
更改为
void addTail (node *head, int value, int length) {
if (head == NULL) { // violation of contract, die loud
exit(EXIT_FAILURE);
}
node *current = head;
node *newNode = malloc(sizeof(node));
if (newNode == NULL) {
exit(EXIT_FAILURE); // or handle gracefully if possible
}
newNode->nodeValue = value;
newNode->nodeLength = length;
newNode->next = NULL;
while (current->next != NULL)
current = current->next;
current->next = newNode;
}
它应该有用。
但是,由于您有指向列表中第一个和最后一个节点的指针,因此使用back
指针附加新节点会更有效,
void add(queue *currentQueue, int data){
node *newNode = malloc(sizeof *newNode);
if (newNode == NULL) {
exit(EXIT_FAILURE); // or handle gracefully if possible
}
newNode->nodeValue = data;
newNode->nodeLength = data+5;
newNode->next = NULL;
currentQueue->back->next = newNode;
currentQueue->back = newNode;
}
因为你不需要遍历整个列表来找到结束。
一个简单的示例程序
#include <stdlib.h>
#include <stdio.h>
struct listNode {
int nodeLength;
int nodeValue;
struct listNode *next;
};
typedef struct listNode node;
struct QueueRecord {
node *list;
node *front;
node *back;
int maxLen;
};
typedef struct QueueRecord queue;
node *createList (){
node *head = NULL;
head = (struct listNode *)malloc(sizeof(node));
head->next = NULL;
return head;
}
void addTail (node *head, int value, int length) {
if (head == NULL) { // violation of contract, die loud
exit(EXIT_FAILURE);
}
node *current = head;
node *newNode = malloc(sizeof(node));
if (newNode == NULL) {
exit(EXIT_FAILURE); // or handle gracefully if possible
}
newNode->nodeValue = value;
newNode->nodeLength = length;
newNode->next = NULL;
while (current->next != NULL)
current = current->next;
current->next = newNode;
}
queue createQueue(int maxLen){
queue newQueue;
newQueue.list = createList();
newQueue.front = newQueue.list;
newQueue.back = newQueue.list;
newQueue.maxLen = maxLen;
return newQueue;
}
void add(queue *currentQueue, int data){
if (currentQueue == NULL) {
exit(EXIT_FAILURE);
}
addTail(currentQueue->list, data, data+5);
currentQueue->back = currentQueue->back->next;
}
int main(void) {
queue myQ = createQueue(10);
for(int i = 1; i < 6; ++i) {
add(&myQ, i);
printf("list: %p\nfront: %p\nback: %p\n",
(void*)myQ.list, (void*)myQ.front, (void*)myQ.back);
}
node *curr = myQ.front->next;
while(curr) {
printf("Node %d %d, Back %d %d\n", curr->nodeValue,
curr->nodeLength, myQ.back->nodeValue, myQ.back->nodeLength);
curr = curr->next;
}
while(myQ.list) {
myQ.front = myQ.front->next;
free(myQ.list);
myQ.list = myQ.front;
}
return 0;
}
按预期工作,也可以使用替代add
实现。
答案 1 :(得分:0)
我认为你从来没有初始化,所以返回&gt;接下来是一些随机指针?