91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

golang刷leetcode技巧之如何實現全 O(1) 的數據結構

發布時間:2021-12-16 09:11:41 來源:億速云 閱讀:135 作者:小新 欄目:大數據

這篇文章主要介紹了golang刷leetcode技巧之如何實現全 O(1) 的數據結構,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

請你實現一個數據結構支持以下操作:

Inc(key) - 插入一個新的值為 1 的 key。或者使一個存在的 key 增加一,保證 key 不為空字符串。

Dec(key) - 如果這個 key 的值是 1,那么把他從數據結構中移除掉。否則使一個存在的 key 值減一。如果這個 key 不存在,這個函數不做任何事情。key 保證不為空字符串。

GetMaxKey() - 返回 key 中值最大的任意一個。如果沒有元素存在,返回一個空字符串"" 。

GetMinKey() - 返回 key 中值最小的任意一個。如果沒有元素存在,返回一個空字符串""。

挑戰:

你能夠以 O(1) 的時間復雜度實現所有操作嗎?

解題思路

1,這是lru的變體,用hash+有序雙鏈表的形式

2,每次inc和dec的時候將當前節點從鏈表中去除

3,然后找到合適的位置插入

4,注意,當inc后,后面的連續常數個值相等,需要特殊處理

5,dec類似

代碼實現

type Node struct{    next *Node    prev *Node    val int      key string}type AllOne struct {    head *Node    tail *Node    m map[string]*Node
}

/** Initialize your data structure here. */func Constructor() AllOne {    ao:=AllOne{        head:&Node{},        tail:&Node{},        m:make(map[string]*Node),    }    ao.head.next=ao.tail    ao.tail.prev=ao.head    return ao}

/** Inserts a new key <Key> with value 1. Or increments an existing key by 1. */func (this *AllOne) Inc(key string)  {    if n,ok:=this.m[key];ok{        this.m[key].val++        next:=n.next        if next==this.tail || next.val>=n.val{            return        }else{             next.prev=n.prev             n.prev.next=next                        for next.next!=this.tail && next.next.val<n.val{                next=next.next            }                                  n.next=next.next            n.prev=next                        next.next.prev=n            next.next=n        }    }else{        n:=&Node{            val:1,            key:key,            prev:this.head,            next:this.head.next,        }        this.head.next.prev=n        this.head.next=n                this.m[key]=n    }    this.Print()}
func(this*AllOne)Print(){    for n:=this.head.next ;n!=this.tail;n=n.next{        println(n.val)    }}
/** Decrements an existing key by 1. If Key's value is 1, remove it from the data structure. */func (this *AllOne) Dec(key string)  {    if _,ok:=this.m[key];!ok {        return    }        n:= this.m[key]    if this.m[key].val>1{       n.val--        if n.prev==this.head || n.prev.val<=n.val{            return        }else {            prev:=n.prev             prev.next=n.next             n.next.prev=prev                        for prev.prev!=this.head && prev.prev.val>n.val{                prev=prev.prev            }                      n.prev=prev.prev            n.next=prev                        prev.prev.next=n            prev.prev=n        }    }else{        n.prev.next=n.next        n.next.prev=n.prev        delete(this.m,key)          }   this.Print()   }

/** Returns one of the keys with maximal value. */func (this *AllOne) GetMaxKey() string {     if this.head.next==this.tail{        return ""    }    return this.tail.prev.key}

/** Returns one of the keys with Minimal value. */func (this *AllOne) GetMinKey() string {    if this.head.next==this.tail{        return ""    }    return this.head.next.key}

/** * Your AllOne object will be instantiated and called as such: * obj := Constructor(); * obj.Inc(key); * obj.Dec(key); * param_3 := obj.GetMaxKey(); * param_4 := obj.GetMinKey(); */

感謝你能夠認真閱讀完這篇文章,希望小編分享的“golang刷leetcode技巧之如何實現全 O(1) 的數據結構”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

革吉县| 利津县| 吉安市| 九寨沟县| 韩城市| 峨边| 新龙县| 洞口县| 武清区| 西青区| 耒阳市| 临汾市| 德保县| 普陀区| 长寿区| 黔西| 宣化县| 铜鼓县| 华蓥市| 山丹县| 桐庐县| 临清市| 浪卡子县| 东辽县| 扶沟县| 灵台县| 普格县| 贵阳市| 平乐县| 宜丰县| 霍林郭勒市| 二连浩特市| 乌兰察布市| 平遥县| 泾阳县| 古蔺县| 霍邱县| 泾源县| 九江县| 互助| 伊吾县|