package main import( "fmt" ) type Node struct { Key string Val string Pre *Node Next *Node } type DLinkedList struct { Head *Node Tail *Node } func (self *DLinkedList) IsEmpty() bool { if self.Head == nil && self.Tail == nil { return true } else { return false } } func (self *DLinkedList) RemoveLast() { if self.Tail != nil { self.Remove(self.Tail) } } func (self *DLinkedList) Remove(n *Node){ if self.Tail == self.Head { self.Head = nil self.Tail = nil return } if n == self.Head { n.Next.Pre = nil self.Head = n.Next return } if n == self.Tail { n.Pre.Next = nil self.Tail = n.Pre return } n.Pre.Next = n.Next n.Next.Pre = n.Pre } func (self *DLinkedList) AddFirst(n *Node) { if self.Head == nil { self.Head = n self.Tail = n n.Pre = nil n.Next = nil return } n.Next = self.Head self.Head.Pre = n self.Head = n n.Pre = nil } type LRUCache struct { Cap int Size int HashMap map[string]*Node Cache *DLinkedList } func (self *LRUCache) Get(k string) string { if node,ok := self.HashMap[k]; ok { self.Cache.Remove(node) self.Cache.AddFirst(node) return node.Val } else { return "" } } func (self *LRUCache) Set(k,val string ) { if node,ok := self.HashMap[k];ok { self.Cache.Remove(node) node.Val = val self.Cache.AddFirst(node) } else { n := &Node{Key:k,Val:val} self.HashMap[k] = n self.Cache.AddFirst(n) self.Size = self.Size + 1 if self.Size > self.Cap { self.Size = self.Size - 1 delete(self.HashMap,self.Cache.Tail.Key) self.Cache.RemoveLast() } } } func main() { cache := new(LRUCache) cache.Cap = 3 cache.HashMap = make(map[string]*Node,0) cache.Cache = new(DLinkedList) cache.Set("allen","value") cache.Set("a","value") cache.Set("b","value") cache.Set("c","value") test := cache.Get("allen") fmt.Println(test) fmt.Println(cache.HashMap) fmt.Println(cache.Cache) fmt.Println(cache.Size) }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Head First PHP & MySQL(中文版)
Lynn Beighley、Michael Morrison / 苏金国、徐阳 / 中国电力 / 2010-6 / 98.00元
通过《深入浅出PHP&MySQL(影印版)》,你将学习:准备好把你的静态HTML网页提升到下一个层次并使用PHP和MySQL建立数据库驱动的网站了吗?《深入浅出PHP& MysQL》是一本快捷实用的指南,让你的动态网站快速运行。自己动手建立实际应用程序,从视频游戏高分留言板到在线交友网站。当你完成后,你将可以进行验证表单、使用会话ID和cookies工作、执行数据库查询和联接、处理文件I/0操作等......一起来看看 《Head First PHP & MySQL(中文版)》 这本书的介绍吧!