XOR List - A Memory Efficient Doubly Linked List
普通的双向链表需要两个指针分别保存 next
和 prev
。利用 XOR
的特性,可以
用一个指针实现双向链表。
考虑 XOR
特性:
\(If\)
\begin{equation} C = A \oplus B \end{equation}\(Then\)
\begin{equation} B = C \oplus A\\ A = C \oplus B \end{equation}
假设链表节点 struct node { struct node *link; }
和链表头 =struct head {};
,初始
时有:
head->link = &head;
插入节点 x1
:
x1->link = &head ^ & head->link = &head ^ x1;