gpt4 book ai didi

c - 插入双向链表的头部和尾部——仅打印最后插入的尾部项目

转载 作者:行者123 更新时间:2023-11-30 14:59:22 24 4
gpt4 key购买 nike

我正在尝试实现一个双向链表,以便准备考试,但在将项目插入尾部时遇到了一些麻烦 - 当我只插入到列表的头部时,它会正确打印出来。但是,当我插入到列表中的尾部时,仅打印出最后一个尾部项目。下面是我的完整代码:

 /*
- Q2: Write a function that takes a LinkedList struct pointer and inserts at the head of the linked list.

- Q3. Write a function that takes a LinkedList struct pointer and frees all memory associated with it. (
For a solution, see fancy-linked-lists.c, attached above.)

- Q4 Review all the functions from today's code and give their big-oh runtimes.

- Q5: Implement functions for doubly linked lists:
- tail_insert(),
- head_insert(),
- tail_delete(),
- head_delete(),
- delete_Nth().
- Repeat these exercises with doubly linked lists in which you maintain a tail pointer.
- How does the tail pointer affect the runtimes of these functions?
- Are any of these functions more efficient for doubly linked lists with tail pointers than they are for singly linked lists with tail pointers?
*/

#include <stdio.h>
#include <stdlib.h>

typedef struct node
{
int data;
struct node *next;
struct node *prev;
} node;

node *createNode(int data)
{
node *ptr = NULL;
ptr = malloc(sizeof(node));
if(ptr == NULL)
{
printf("space could not be allocated\n");
return NULL;
}

ptr->data = data;
ptr->next = NULL;
ptr->prev = NULL;

return ptr;
}

node *tailInsert(node *head, int data)
{
if(head->next == NULL)
{
node *temp;
temp = createNode(data);
temp->next = NULL;
temp->prev = head;
head->next = temp;
return head;
}
tailInsert(head->next, data);
}

node *frontInsert(node *head, int data)
{
node *newHead;

if(head == NULL)
{
return createNode(data);
}

newHead = createNode(data);
newHead->next = head;
newHead->prev = NULL;

return newHead;
}

node *destroy_linked_list(node *list)
{
/*if (list == NULL)
return NULL;

// Free the entire list within this struct.
destroy_list(list->head);

// Free the struct itself.
free(list);

return NULL;
*/
}

void printList(node *head)
{
if (head == NULL)
{
printf("Empty List\n");
return;
}

for(; head != NULL; head = head->next)
printf("%d ", head->data);

printf("\n");
}

int main(void)
{
node *head = NULL;

head = frontInsert(head, 1);
head = frontInsert(head, 2);
head = frontInsert(head, 3);
head = tailInsert(head, 4);
head = tailInsert(head, 5);
head = tailInsert(head, 6);

printList(head);

system("PAUSE");
return 0;
}

非常感谢您的帮助!

最佳答案

您将从 tailInsert 返回 temp(最后一个节点)并分配给 head。如果在尾部插入,请勿更改头指针。

void tailInsert(node *head, int data)
{
if(head->next == NULL)
{
node *temp;
temp = createNode(data);
temp->next = NULL;
temp->prev = head;
head->next = temp;
return ;
}
tailInsert(head->next, data);
}

在 main 中,如果调用 tailInsert 函数,则不要向 head 分配任何内容

关于c - 插入双向链表的头部和尾部——仅打印最后插入的尾部项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42802818/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com