forked from halfrost/LeetCode-Go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbucket.go
55 lines (47 loc) · 915 Bytes
/
bucket.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package template
import (
"container/list"
"sync"
)
type bucket struct {
sync.RWMutex
keys map[string]*list.Element
}
func (b *bucket) pairCount() int {
b.RLock()
defer b.RUnlock()
return len(b.keys)
}
func (b *bucket) get(key string) *list.Element {
b.RLock()
defer b.RUnlock()
if el, ok := b.keys[key]; ok {
return el
}
return nil
}
func (b *bucket) set(key string, value interface{}) (*list.Element, *list.Element) {
el := &list.Element{Value: Pair{key: key, value: value, cmd: PushFront}}
b.Lock()
exist := b.keys[key]
b.keys[key] = el
b.Unlock()
return el, exist
}
func (b *bucket) update(key string, el *list.Element) {
b.Lock()
b.keys[key] = el
b.Unlock()
}
func (b *bucket) delete(key string) *list.Element {
b.Lock()
el := b.keys[key]
delete(b.keys, key)
b.Unlock()
return el
}
func (b *bucket) clear() {
b.Lock()
b.keys = make(map[string]*list.Element)
b.Unlock()
}