Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
L, R = &LRUCache{Key: -1, Val: -1}, &LRUCache{Key: -1, Val: -1}
)
//map记录键值是否存在,双链表保证O(1)删除(最左边是最近用过的,最右边是不常用的值)
Functions ¶
This section is empty.
Types ¶
type LRUCache ¶
func Constructor ¶
type MinStack ¶
type MinStack struct {
// contains filtered or unexported fields
}
func Constructor ¶
func Constructor() MinStack
Click to show internal directories.
Click to hide internal directories.