你错过了几件事;最重要的是链表不是数组,因此您不能轻松地对两者进行某些算法互换。因此,请考虑以下事项:
- 列表长度由到达最后一个节点决定,但此算法不需要它。没有理由扫描列表只是为了找到您一开始就不需要的计数。当冒泡排序的最后一段到达单个节点时,您的“完成”状态就达到了(即它没有
next
转到)。
- 链表(或任何其他节点指针模式)的秘诀在于对指针的操作。为此,您可以充分利用已经用于操作节点的东西:指针,但不仅仅是任何指针。指向指针的指针。
- 永远不要低估一张纸和一支铅笔绘制出你希望你的算法如何工作的力量。特别是对于这样的事情:
现在来看看以下相当不同的方法。其中有些东西对于理解整体算法至关重要,但我会在代码之后保存它:
void ll_bubblesort(struct node **pp)
{
// p always points to the head of the list
struct node *p = *pp;
*pp = nullptr;
while (p)
{
struct node **lhs = &p;
struct node **rhs = &p->next;
bool swapped = false;
// keep going until qq holds the address of a null pointer
while (*rhs)
{
// if the left side is greater than the right side
if ((*rhs)->data < (*lhs)->data)
{
// swap linked node ptrs, then swap *back* their next ptrs
std::swap(*lhs, *rhs);
std::swap((*lhs)->next, (*rhs)->next);
lhs = &(*lhs)->next;
swapped = true;
}
else
{ // no swap. advance both pointer-pointers
lhs = rhs;
rhs = &(*rhs)->next;
}
}
// link last node to the sorted segment
*rhs = *pp;
// if we swapped, detach the final node, terminate the list, and continue.
if (swapped)
{
// take the last node off the list and push it into the result.
*pp = *lhs;
*lhs = nullptr;
}
// otherwise we're done. since no swaps happened the list is sorted.
// set the output parameter and terminate the loop.
else
{
*pp = p;
break;
}
}
}
这与您可能预期的完全不同。这个简单练习的目的是确定我们正在评估数据,但我们实际上是在对指针进行排序。请注意,除了p
始终是列表头的 之外,我们没有使用其他指向节点的指针。相反,我们使用指向指针的指针来操作隐藏在 list 中的指针。
为了演示这个算法是如何工作的,我编写了一个小的测试应用程序,它生成一个随机的整数列表,然后将上面的内容放在所述列表上。我还编写了一个简单的打印实用程序来打印从任何节点到末尾的列表。
void ll_print(struct node *lst)
{
while (lst)
{
std::cout << lst->data << ' ';
lst = lst->next;
}
std::cout << std::endl;
}
int main()
{
std::random_device rd;
std::default_random_engine rng(rd());
std::uniform_int_distribution<int> dist(1,99);
// fill basic linked list
struct node *head = nullptr, **pp = &head;
for (int i=0;i<20; ++i)
{
*pp = new node(dist(rng));
pp = &(*pp)->next;
}
*pp = NULL;
// print prior to sort.
ll_print(head);
ll_bubblesort(&head);
ll_print(head);
return 0;
}
我还修改了原始算法,以在每次通过交换某些内容后包含打印:
*pp = *lhs;
*lhs = nullptr;
ll_print(p);
样本输出
6 39 13 80 26 5 9 86 8 82 97 43 24 5 41 70 60 72 26 95
6 13 39 26 5 9 80 8 82 86 43 24 5 41 70 60 72 26 95
6 13 26 5 9 39 8 80 82 43 24 5 41 70 60 72 26 86
6 13 5 9 26 8 39 80 43 24 5 41 70 60 72 26 82
6 5 9 13 8 26 39 43 24 5 41 70 60 72 26 80
5 6 9 8 13 26 39 24 5 41 43 60 70 26 72
5 6 8 9 13 26 24 5 39 41 43 60 26 70
5 6 8 9 13 24 5 26 39 41 43 26 60
5 6 8 9 13 5 24 26 39 41 26 43
5 6 8 9 5 13 24 26 39 26 41
5 6 8 5 9 13 24 26 26 39
5 6 5 8 9 13 24 26 26
5 5 6 8 9 13 24 26
5 5 6 8 9 13 24 26 26 39 41 43 60 70 72 80 82 86 95 97
另一个样本
62 28 7 24 89 20 94 26 27 21 28 76 60 51 99 20 94 48 81 36
28 7 24 62 20 89 26 27 21 28 76 60 51 94 20 94 48 81 36
7 24 28 20 62 26 27 21 28 76 60 51 89 20 94 48 81 36
7 24 20 28 26 27 21 28 62 60 51 76 20 89 48 81 36
7 20 24 26 27 21 28 28 60 51 62 20 76 48 81 36
7 20 24 26 21 27 28 28 51 60 20 62 48 76 36
7 20 24 21 26 27 28 28 51 20 60 48 62 36
7 20 21 24 26 27 28 28 20 51 48 60 36
7 20 21 24 26 27 28 20 28 48 51 36
7 20 21 24 26 27 20 28 28 48 36
7 20 21 24 26 20 27 28 28 36
7 20 21 24 20 26 27 28 28
7 20 21 20 24 26 27 28
7 20 20 21 24 26 27
7 20 20 21 24 26 27 28 28 36 48 51 60 62 76 81 89 94 94 99
请注意,一旦我们在不断减少的源列表中剩下一个已经排序的片段,我们就完成了。
概括
我强烈建议使用调试器遍历上述算法,以更好地了解它是如何工作的。事实上,无论如何,我建议使用大多数算法,但是执行指针到指针操作的算法可能有点令人生畏,直到你了解它的真正强大之处。这不是完成此任务的唯一方法,但如果您考虑如何管理链表,以及您真正所做的只是更改存储在可预测位置的指针中的值,这是一种直观的方法。