算法导论2nd 10.2-8 单指针双向链表

思路:按提示是将指针转换为整型数,然后做异或保存为np。我们知道对于异或操作来说,如果c = a ^ b,那么c ^ a = b且 c ^ b = a。也就是说对于异或的结果,可以根据其中一个原操作数解出另一个原操作数,单独给出一个异或结果值是无法用于计算的。所以在构造链表时可以先构造出第一个结点,并获得其指针,然后用这个指针去构造第二个结点,在构造新结点时它的prev值为NULL(0),next值为上一个结点的指针,所以可以在O(1)的时间复杂度内构造出链表。另外,在遍历这个链表时无法知道是原结点prev还是next。delete操作可以采用按关键字的方法,也就是先遍历再删除。

代码:

#include <iostream>

struct Node
{
    int key;
    unsigned long np;
    Node(int x) : key(x), np(0) {}
};

Node *insert(Node *head, int key)
{
    Node *t = new Node(key);
    if (NULL != head)
    {
        t->np = reinterpret_cast<unsigned long>(head);
        head->np ^= reinterpret_cast<unsigned long>(t);
    }
    return t;
}

void printList(Node *head)
{
    unsigned long prev = 0;
    while (head)
    {
        std::cout << head->key << " <==> ";
        unsigned long t = reinterpret_cast<unsigned long>(head);
        head = reinterpret_cast<Node*>(head->np ^ prev);
        prev = t;
    }
    std::cout << "NULL\n";
}

int main()
{
    Node *head, *tail;
    head = tail = insert(NULL, 0);
    for (int i = 1; i < 5; ++i)
        head = insert(head, i);
    printList(head);
    printList(tail);
    return 0;
}

 

转载于:https://my.oschina.net/guzhou/blog/3065079

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值