leecode 1206|跳表的设计

跳表

跳表,一种链表数据结构,其增删改茶的效率能和平衡树相媲美

leecode1206

可以看上面的那个动画,动画效果很贴切。

我简单讲讲它的机制吧,每个节点不单单是一个,测试好几层,然后同一层的节点和统一节点的next 采用单链表产生联系

最核心的东西在于find

这也是为什么单链表的增删改查,花费开销最多的地方。

那它是怎么查的?

我们已经知道了跳表的结构了,最底层肯定是最全的,如果暴力最底层,那就和单链表没什么区别了。

它的这个查恰巧结合了跳表的结构,如果在上面某个层找到了节点x 的pre那么接下来的操作都好办了。

那它是怎么找到节点x 的pre呢?

从最上层,依次找该节点的next 知道找到pre 如果在这一层还没找到(因为最后一个节点的next 为nullptr),那么会在这个节点的下一层继续找同层找next。依此类推,最后肯定能找到的。

cpp 复制代码
class Skiplist {
private:
    static const int MAX_LEVEL = 10;
    struct Node{
        int val;
        std::vector<Node*> ne;
        Node(int _val, int level):val(_val), ne(level, nullptr){};
    };
    int level;
    Node* head;
    float probability;

    int randomLevel(){
        int lvl = 1;
        while((float) std::rand() / RAND_MAX < probability && lvl < MAX_LEVEL){
            lvl++;
        }
        return lvl;
    }

    void find(int t, std::vector<Node*>& ns){
        Node* cur = head;
        for(int i = level - 1; i >= 0; i--){
            while(cur->ne[i] != nullptr && cur->ne[i]->val < t){
                cur = cur->ne[i];
            }
            ns[i] = cur;
        }
    }
public:
    Skiplist() :level(MAX_LEVEL), head(new Node(-1, MAX_LEVEL)), probability(0.5){
        std::srand(std::time(0));

    }
    
    bool search(int t) {
        std::vector<Node*> ns(level, nullptr);
        find(t, ns);
        Node* target = ns[0]->ne[0];
        return target != nullptr && target->val == t;
    }
    
    void add(int t) {
        std::vector<Node*> ns(level, nullptr);
        find(t, ns);

        int nodeLevel = randomLevel();
        Node* newNode = new Node(t, nodeLevel);
        for(int i = 0; i < nodeLevel; i++){
            newNode->ne[i] = ns[i]->ne[i];
            ns[i]->ne[i] = newNode;
        }
    }
    
    bool erase(int t) {
        std::vector<Node*> ns(level, nullptr);
        find(t, ns);
        Node* target = ns[0]->ne[0];
        if(target == nullptr || target->val != t){
            return false;
        }

        for(int i = 0; i < level && ns[i]->ne[i] == target; i++){
            ns[i]->ne[i] = ns[i]->ne[i]->ne[i];
        }
        delete target;
        return true;

    }

    ~Skiplist(){
        Node* cur = head;
        while(cur){
            Node* next = cur->ne[0];
            delete cur;
            cur = next;
        }
    }
};

/**
 * Your Skiplist object will be instantiated and called as such:
 * Skiplist* obj = new Skiplist();
 * bool param_1 = obj->search(target);
 * obj->add(num);
 * bool param_3 = obj->erase(num);
 */

再贴一份,

cpp 复制代码
#include <iostream>
#include <vector>
#include <cstdlib>
#include <ctime>

class Skiplist {
private:
    static const int MAX_LEVEL = 10;
    struct Node {
        int val;
        std::vector<Node*> ne;
        Node(int _val, int level) : val(_val), ne(level, nullptr) {}
    };

    int level;
    Node* head;
    float probability;

    int randomLevel() {
        int lvl = 1;
        while ((float)std::rand() / RAND_MAX < probability && lvl < MAX_LEVEL) {
            lvl++;
        }
        return lvl;
    }

    void find(int t, std::vector<Node*>& ns) {
        Node* cur = head;
        for (int i = level - 1; i >= 0; i--) {
            while (cur->ne[i] != nullptr && cur->ne[i]->val < t) {
                cur = cur->ne[i];
            }
            ns[i] = cur;
        }
    }

public:
    Skiplist() : level(MAX_LEVEL), head(new Node(-1, MAX_LEVEL)), probability(0.5) {
        std::srand(std::time(0));
    }

    bool search(int t) {
        std::vector<Node*> ns(level, nullptr);
        find(t, ns);
        Node* target = ns[0]->ne[0];
        return target != nullptr && target->val == t;
    }

    void add(int t) {
        std::vector<Node*> ns(level, nullptr);
        find(t, ns);
        int nodeLevel = randomLevel();
        Node* newNode = new Node(t, nodeLevel);
        for (int i = 0; i < nodeLevel; i++) {
            newNode->ne[i] = ns[i]->ne[i];
            ns[i]->ne[i] = newNode;
        }
    }

    bool erase(int t) {
        std::vector<Node*> ns(level, nullptr);
        find(t, ns);
        Node* target = ns[0]->ne[0];
        if (target == nullptr || target->val != t) {
            return false;
        }
        for (int i = 0; i < level && ns[i]->ne[i] == target; i++) {
            ns[i]->ne[i] = ns[i]->ne[i]->ne[i];
        }
        delete target;
        return true;
    }

    ~Skiplist() {
        Node* cur = head;
        while (cur) {
            Node* next = cur->ne[0];
            delete cur;
            cur = next;
        }
    }
};

int main() {
    Skiplist skiplist;
    skiplist.add(1);
    skiplist.add(2);
    skiplist.add(3);
    std::cout << skiplist.search(1) << std::endl;  // returns true
    std::cout << skiplist.search(4) << std::endl;  // returns false
    skiplist.add(4);
    std::cout << skiplist.search(4) << std::endl;  // returns true
    std::cout << skiplist.erase(4) << std::endl;   // returns true
    std::cout << skiplist.search(4) << std::endl;  // returns false
    return 0;
}

redis

参考

相关推荐
是苏浙2 小时前
零基础入门C语言之C语言实现数据结构之单链表经典算法
c语言·开发语言·数据结构·算法
71-34 小时前
C语言练习题——判断水仙花数(0-100000)
c语言·笔记·学习
jzhwolp5 小时前
从基本链表到侵入式链表,体会内核设计思路
c语言·后端·设计模式
biter down6 小时前
c语言18:结构体位段联合体
c语言·开发语言
程序员buddha7 小时前
C语言操作符详解
java·c语言·算法
云知谷9 小时前
【经典书籍】《代码整洁之道》第六章“对象与数据结构”精华讲解
c语言·开发语言·c++·软件工程·团队开发
树在风中摇曳10 小时前
C语言 | 文件操作详解与实战示例
c语言·开发语言
雨落在了我的手上11 小时前
C语言入门(十六):指针(2)
c语言
say_fall11 小时前
C语言编程实战:每日刷题 - day 1
c语言·开发语言·学习
IoT智慧学堂11 小时前
C语言流程控制:if判断语句全解析
c语言·开发语言