所以我的想法是我有一个定义为结构的双向链表
struct Node
{
struct Node *next;
struct Node *prev;
char value[5];
};
struct DoubleLinkedList
{
int size;
struct Node *head;
struct Node *tail;
};
我正在使用 InsertionSort 函数插入到列表中。我将指向我的双向链接列表的指针作为参数传递给它,并通过在列表中添加一个新的 4 字符串节点(按字典顺序排序的链接列表)对其进行修改。然后我打印添加每个字符串节点的链表。
打印被证明是有问题的。现在,使用下面的代码,输出总是类似于(假设在每一步插入的字符串是 aaaa、bbbb、cccc ......)
啊啊啊
bbbb -> bbbb
cccc -> cccc -> cccc
由于某种原因,链表结构正在将每个节点更改为要插入的新字符串的值;我不知道为什么!而且,如果我尝试将打印块转移到主要功能,它会打印出乱码。
int main()
{
struct DoubleLinkedList strings;
while (1)
{
sleep(1);
char s[5];
GenerateRandomString(s,4);
InsertionSort(&strings, s);
}
return 0;
}
void InsertionSort(struct DoubleLinkedList *sorted, char *randomstring)
{
struct Node new;
strcpy(new.value,randomstring);
printf("Newvalue %s\n", new.value);
if ((*sorted).size == 0)
{
new.next = NULL;
new.prev = NULL;
(*sorted).head = &(new);
(*sorted).tail = &(new);
}
else
{
printf("TEST %s\n", (*(*sorted).head).value);
struct Node *current;
current = (*sorted).head;
printf("CURRENT %s\n", (*current).value);
while (strcmp(randomstring,(*current).value) > 0)
{
current = (*current).next;
if (current = NULL)
{
break;
}
}
new.next = current;
if (current != NULL)
{
new.prev = (*current).prev;
if ((*current).prev != NULL)
{
(*(*current).prev).next = &(new);
}
else
{
(*sorted).head = &(new);
}
(*current).prev = &(new);
}
else
{
new.prev = (*sorted).tail;
(*((*sorted).tail)).next = &(new);
(*sorted).tail = &(new);
}
}
(*sorted).size++;
struct Node *printing;
printing = (*sorted).head;
int i;
for (i = 0; i < (*sorted).size - 1; i++)
{
printf("%s -> ", (*printing).value);
printing = (*printing).next;
}
printf("%s\n",(*printing).value);
}