c – 包含双指针的单链表的正确名称是什么?
作者:互联网
最近,我看到了这个:
struct node {
node* pNext;
node** pPrevNext;
};
void insert_before(node** pNext, node* toInsert) {
toInsert->pNext = *pNext;
toInsert->pPrevNext = pNext;
if (*pNext) (*pNext)->pPrevNext = &toInsert->pNext;
*pNext = toInsert;
};
// node *a, *b;
// insert_before(a->pPrevNext, b);
它看起来像一个单链表,但包含指向前一个节点的下一个指针的指针.我的问题很简单:这叫什么?没有“真实姓名”,在StackOverflow和整个互联网上搜索有关此数据结构的信息都是空的.
请注意,它不是双向链表,如下所示:
struct node {
node* pNext;
node* pPrev;
};
解决方法:
它被称为双链表,因为它有两个指针.您可以从像container_of(* node.pPrevNext,node,pNext)这样的宏中获取前一个节点,因此它在逻辑上也等同于标准的双向链表.
标签:c-3,doubly-linked-list,c,data-structures,linked-list 来源: https://codeday.me/bug/20190725/1537921.html