链表 - 如何在不移动头节点的情况下插入尾部

Linked List - how to tail insert without moving head node

所以我 运行 遇到了问题。我知道它是什么。我只是想不出一种方法来解决它,允许做什么..

首先是我的尾插入函数

Status append(MY_QUEUE queue, int item)
{
    Node_ptr temp;
    Head_ptr head = (Head_ptr) queue;

    //create a new node

    temp = (Node_ptr)malloc(sizeof(Node));
    if (temp == NULL) {
        printf("malloc failed\n");
        return FAILURE;
    }

    temp->data = item;
    temp->next = NULL;
    if (head->head == NULL){
        head->head = temp;
    }
    else{
        while(head->head->next) {
            head->head = head->head->next;
        }
        head->head->next = temp;
    }
    return SUCCESS;
}

如你所见。这很简单。如果头节点为空。它将新节点添加到头部。如果不。它一直移动 head 直到它到达 null 然后它添加节点。那就是问题所在。正在移动我不应该做的头节点指针。但我似乎想不出另一种方法来做到这一点。因为我传递了 MY_QUEUE。我将包括头文件和声明以了解它们是什么。

struct node
{
    int data;
    Node_ptr next;

};

struct head_node;
typedef struct head_node Head_node;
typedef Head_node *Head_ptr;

struct head_node
{
    struct my_queue_public methods;
    Node_ptr head;
};

void destroy(MY_QUEUE queue);
Status append(MY_QUEUE queue, int item);
Status service(MY_QUEUE queue);
int* front(MY_QUEUE queue);
Bool empty(MY_QUEUE stack);

void init_functions(MY_QUEUE queue)
{
    //queue->destroy = destroy;
    queue->empty = empty;
    queue->service = service ;
    queue->append = append;
    queue->front = front;
}
MY_QUEUE my_queue_init_default(void)
{
    Head_ptr head;
    head = malloc(sizeof(Head_node));

    if (head != NULL)
    {
        head->head = NULL;
        init_functions((MY_QUEUE)head);
    }
    return (MY_QUEUE)head;
}

insert tail函数就是append函数。我无法更改我的参数或我 return 的内容。我只需更改函数内部的内容即可。

MY_QUEUE 是结构节点的 public 版本。

这是头文件

#include "status.h"
struct my_queue_public;
typedef struct my_queue_public* MY_QUEUE;

struct my_queue_public
{
    void(*destroy)(MY_QUEUE* phMy_queue);
    Status(*service)(MY_QUEUE hMy_queue);
    Status(*append)(MY_QUEUE hMy_queue, int item);
    Bool(*empty)(MY_QUEUE hMy_queue);
    int* (*front)(MY_QUEUE hMy_queue);
};

MY_QUEUE my_queue_init_default(void);

顺便说一句,这是一个队列。在最后添加。从前面获取物品。总而言之,头部在移动,我失去了节点。我知道如何避免它,但我知道的唯一方法是更改​​我传入的内容。而不是 MY_QUEUE。我会通过 MY_QUEUE*。有没有另一种方法可以用我所拥有的

销毁函数

    void destroy(MY_QUEUE queue)
{

    Head_ptr head = (Head_ptr)queue;

    Node_ptr tmp;

    if (head->head == NULL) {

        return;
    }


    while (head->head !=NULL){
        tmp = head->head;
        head->head = head->head->next;
        free(tmp);
    }

    head->head = NULL;
}

我认为问题在于您正在使用结构 Node 作为队列的数据结构。为什么不使用更专用的版本?

typedef struct queue_struct {
    Node * head;
    Node * tail;
} * MY_QUEUE;

现在,好吧,就是这样。您不必 运行 整个列表即可在末尾添加。唯一的问题是您必须在插入(和删除)时保持 tailhead 向上,如下所示。

Status append(MY_QUEUE queue, int item)
{
    Node_ptr temp;

    // create a new node
    temp = (Node_ptr)malloc(sizeof(Node));
    if (temp == NULL) {
        printf("malloc failed\n");
        return FAILURE;
    }

    temp->data = item;
    temp->next = NULL;

    if (queue->head == NULL){
        queue->head = temp;
        queue->tail = temp;
    }
    else {
        queue->tail->next = temp;
        queue->tail = temp;
    }

    return SUCCESS;
}

希望对您有所帮助。

thats the problem. am moving head node pointer which i am not supposed to do. but i cant seem to think of an another way to do it.

你可以使用一个临时变量tail来跟踪link,而不是移动头节点,

    Node_ptr tail;
    if (head->head == NULL){
        head->head = temp;
    }
    else{
        //while(head->head->next) {
        //  head->head = head->head->next;
        //  }
        //head->head->next = temp;
        tail = head->head;
        while(tail->next) {
            tail = tail->next;
        }
        tail->next = temp;
    }

对于销毁函数,

//void destroy(MY_QUEUE queue);
void destroy(MY_QUEQUE *p_queue);//change to this 
                                 //to keep consistent in struct my_queue_public

 void destroy(MY_QUEUE *p_queue)
 {
    Head_ptr head;
    Node_ptr tmp;

   if(p_queue == NULL){
     return;
   }

   if((head = (Head_ptr)*p_queue) == NULL){
     return;
   }    

   if (head->head == NULL) {
     return;
   }

   while (head->head !=NULL){
      tmp = head->head;
      head->head = head->head->next;
      free(tmp);
   }

   free(head);
  }