- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在不改变其中数据的情况下改变之前创建的双向循环链表中节点的位置?
(首先,我很抱歉我的英语不好,英语不是我的母语。)
我们参加了我们大学的“数据结构”类(class)考试。最后一个问题是这样给出的。
Check out the code given below. Complete the missing function.
#include <stdio.h>
#include <stdlib.h>
struct Node
{
int data;
struct Node* next;
struct Node* pre;
};
struct Node* node_create(int data)
{
struct Node* new_node = (struct Node*)malloc(sizeof(struct Node));
new_node->data = data;
new_node->next = NULL;
new_node->pre = NULL;
return new_node;
}
void node_add(struct Node** head, struct Node* new_node)
{
struct Node* list = *head;
if(*head == NULL)
{
new_node->next = new_node;
new_node->pre = new_node;
*head = new_node;
}
else
{
while(list->next != *head)
{
list = list->next;
}
list->next = new_node;
(*head)->pre = new_node;
new_node->next = *head;
new_node->pre = list;
}
}
void node_list(struct Node** head)
{
struct Node* list = *head;
if(*head == NULL)
{
printf("\nEmpty Linked List!\n");
return;
}
do{
//printf("(%p) %p - %d-> (%p)", list->pre,list,list->data,list->next);
printf("%d-> ", list->data);
list = list->next;
}while(list != *head);
}
void node_delete(struct Node** head, int data)
{
if(*head == NULL)
{
printf("\nEmpty Linked List!\n");
return;
}
struct Node* list = *head;
struct Node* end = *head;
if( list->data == data )
{
if(list->next == list)
{
free(list);
*head = NULL;
}
else
{
while(end->next != *head)
{
end = end->next;
}
*head = list->next;
end->next = *head;
(*head)->pre = end;
free(list);
}
}
else
{
while(list->data != data && list->next != *head)
{
list = list->next;
}
if(list->data != data && list->next == *head)
{
printf("No value for delete!\n");
return;
}
(list->pre)->next = list->next;
(list->next)->pre = list->pre;
free(list);
}
printf("\nDelete of complited!\n");
}
void node_sorting(struct Node** head)
{
}
int main()
{
struct Node* head = NULL;
struct Node* new_node = NULL;
int select = 0, data = 0, one = 1;
while(one == 1)
{
printf("\n\nNode Add (1)\n");
printf("Node List (2)\n");
printf("Node Delete (3)\n");
printf("Node Sorting (4)\n");
printf("\nSelect: ");
scanf("%d", &select);
if(select == 1)
{
printf("\nData: ");
scanf("%d", &data);
new_node = node_create(data);
node_add(&head, new_node);
}
else if(select == 2)
{
node_list(&head);
}
else if(select == 3)
{
printf("\nData to delete: ");
scanf("%d", &data);
node_delete(&head, data);
}
else if(select == 4)
{
node_sorting(&head);
}
}
return 0;
}
认为问题很简单,可以用冒泡算法解决,所以写了下面的代码作为答案。
void node_sorting(struct Node** head)
{
struct Node* list = *head;
struct Node* tolist = *head;
if(*head == NULL)
{
printf("\nEmpty Linked List!\n");
return;
}
if((*head)->next == *head)
{
printf("A single-element linked list cannot be sorted.");
return;
}
do{
tolist = list->next;
list = list->next;
while(tolist != *head)
{
if(list->data > tolist->data)
{
int temp = 0;
temp = tolist->data;
tolist->data = list->data;
list->data = temp;
}
tolist = tolist->next;
}
}while(list != *head);
}
然而,当成绩公布时,我得知我没有通过考试,上面的问题得了0分。
当我与教授该类(class)的教授交谈时,我得到了以下答案。 “你写的答案只是一个骗局。如果我在现实生活中使用它,可能会造成严重损害。永远不要更改数据。更改节点的位置。”
我不明白这是什么。我研究了 1 周并找到了以下资源。
Inserting data in a sorted Circular Linked List
Inserting a element in a singly circular linked list in sorted manner
Insert element into a sorted Circular Double Linked List
这些都不适合对现有的双向循环链表进行排序。您可以与我分享的任何适合我的要求的文件或文本都会对我非常有帮助。预先非常感谢您。
最佳答案
想法是更新 pre
和 next
成员,以便节点以不同的顺序放置。
这是使用该原理的合并排序的实现。它由以下步骤组成:
pre
、next
指针。以下是添加到代码中以使其像这样工作的函数:
struct Node* extract_head(struct Node** head) {
struct Node *node = *head;
// Detach node from the list it is in
node->pre->next = node->next;
node->next->pre = node->pre;
// Make next node the new head
*head = node == node->next ? NULL : node->next;
// Return the node we have extracted
return node;
}
struct Node* get_middle_node(struct Node* head) {
if (!head) return head;
struct Node *last = head->pre;
// Walk forward and backwards until the two pointers meet:
while (head != last) {
head = head->next; // Forward
if (head == last) break;
last = last->pre; // Backward
}
return head;
}
struct Node* merge(struct Node* left, struct Node* right) {
struct Node *newHead = NULL;
while (left || right) { // While there are nodes to merge...
// Move the node with the least value into a new circular list
node_add(&newHead, extract_head(
!right || left && left->data < right->data ? &left : &right
));
}
return newHead;
}
struct Node* split_at(struct Node *head, struct Node *at) {
struct Node *tail = at->pre;
at->pre = head->pre;
head->pre->next = at;
head->pre = tail;
tail->next = head;
// Return the pointer to the second half that was separated
return at;
}
struct Node* merge_sort(struct Node* head) {
return !head || head->next == head ? head // One node only? => is sorted
// Split in two, sort each, and merge:
: merge(merge_sort(split_at(head, get_middle_node(head))),
merge_sort(head));
}
void node_sorting(struct Node** head)
{
*head = merge_sort(*head);
}
不是你的问题,但你提供的代码有一些奇怪的特殊性。例如,在 node_add
和 node_delete
中有一些 while
循环,它们遍历整个列表,仅在列表中的最后一个节点处停止。但是最后一个节点是头节点的前身,因此您只需查看 (*head)->pre
即可找到它!
关于c - 如何对现有的双向循环链表进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/77507510/
今天我们将开始第二个数据类型-链表的学习,同样我们还是用最原始的方式,自己申请内存管理内存来实现一个链表。 01、01、定义 什么是链表?链表在物理存储结构上表现为非顺序性和非连续性,因此链表
前言:笔记是参考B站up主尚硅谷,图片、代码都是哦。在blog写笔记~(图片、代码来源尚硅谷,侵权必删!) 尚硅谷数据结构学习路线B站网站:https://www.bilibili.com/video
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我想创建一个没有全局变量的单个链表。我用 NULL 初始化了第一个元素,然后想将第一个元素 node 复制到 list_。它被复制到函数中,但副作用不起作用。在我的主函数中,该值仍然是NULL。如果我
我正在尝试使链表与此处的链表相似: linked list in C 那就是在另一个结构中有“头”,我首先称它为“头”。但是我发现做那个改变。很难向 list_item 结构添加值。我已经尝试了一些东
我正在尝试理解链表的代码。我明白他们是如何工作的。我正在查看一些与动态内存和链表有关的代码,我在此处对其进行了简化: #include #include typedef struct nod
有人可以解释下面的代码吗?我是 C 的新手,正在努力弄清楚。为什么我们最后有 queueNodeT? typedef char queueElementT; typedef struct queueN
场景如下:- 我想反转单链表的方向,换句话说,反转后所有指针现在应该指向后.. 这个算法应该需要线性时间。 我想到的解决方案是使用另一个数据结构 A Stack.. 借助它可以轻松反转单向链表,所有指
在 python 中使用链表最简单的方法是什么?在 scheme 中,链表由 '(1 2 3 4 5) 定义。 Python 的列表 [1, 2, 3, 4, 5] 和元组 (1, 2, 3, 4,
本文首发公众号:小码A梦 一般数据主要存储的形式主要有两种,一种是数组,一种是链表。数组是用来存储固定大小的同类型元素,存储在内存中是 一片连续 的空间。而链表就不同于数组。链表
虽然之前有人问过关于链表与数组的问题,但答案大多归结为我们大多数人在某个时候可能已经学到的东西: 列表擅长插入和删除 数组擅长随机访问 现在像 Bjarne Stroustrup 这样受人尊敬的人有
位置 在堆中,碎片化(每个节点的 malloc) - 在几种不同的方式(缓慢分配,缓慢访问,内存碎片)方面效率低下 在堆中,在一个大块中 - 当需要重新分配 时,数据结构获得的所有灵活性都将丢失 在堆
我完成了泛型的学习,但并不容易。不过,我确实明白了。这是我的理解。我希望您纠正我的错误并回答几个问题:)。 public class LinkedList { //class definition }
我将如何创建一个链接列表来在 OCaml 中保存我的数据?我正在尝试制作一个单链表,但是我遇到了语法问题。我只想制作一个模块来简单地从链表中获取'a,插入'a或删除'a。 有人知道吗? 最佳答案 正如
我在使用这段代码时遇到了问题,我不确定我做错了什么 #include #include #include #include typedef struct flight_struct{
我正在创建一个函数来删除给定列表的最后一个节点(作为参数输入)。该函数本身非常简单,如下所示。 function popBack(list) { var current = list.head
我正在尝试开发一种方法,该方法将在链接列表中的当前节点之前插入传递给它的节点。它有3个条件。对于此实现,不能有任何头节点(仅对列表中第一个节点的引用),并且我无法添加更多变量。 如果列表为空,则将传递
使用 scala,我已将大约 100000 个节点添加到链表中。当我使用函数 length 时,例如 mylist.length。我收到“java.lang.StackOverflowError”错误
所以我正在学习处理链表。我将如何递归地添加节点内的项目。我可以通过执行 sum = h.item +h.next.item+h.next.next.item 添加它们,但这只有在我有小的链接列表时才有
所以我一直在努力理解链表的概念(一直在看一些示例代码,我在互联网上找到了这个。现在如果我能请别人确认我是否正确掌握了一些概念。我将绘制图表,说明我认为每个代码链接的作用。 #include #inc
我是一名优秀的程序员,十分优秀!