forked from neetcode-gh/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0622-design-circular-queue.go
86 lines (76 loc) · 1.56 KB
/
0622-design-circular-queue.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
type Node struct {
val int
prev *Node
next *Node
}
func NewNode(val int, prev, next *Node) *Node {
return &Node{
val: val,
prev: prev,
next: next,
}
}
type MyCircularQueue struct {
head *Node
tail *Node
capacity int
length int
}
func Constructor(k int) MyCircularQueue {
head := NewNode(-1, nil, nil)
tail := NewNode(-1, head, head)
head.next, head.prev = tail, tail
return MyCircularQueue{
head: head,
tail: tail,
capacity: k,
length: 0,
}
}
func (this *MyCircularQueue) EnQueue(value int) bool {
if this.length == this.capacity {
return false
}
node := NewNode(value, this.head, this.head.next)
this.head.next.prev = node
this.head.next = node
this.length++
return true
}
func (this *MyCircularQueue) DeQueue() bool {
if this.length == 0 {
return false
}
prev, next := this.tail.prev.prev, this.tail
prev.next, next.prev = next, prev
this.length--
return true
}
func (this *MyCircularQueue) Front() int {
if this.length > 0 {
return this.tail.prev.val
}
return -1
}
func (this *MyCircularQueue) Rear() int {
if this.length > 0 {
return this.head.next.val
}
return -1
}
func (this *MyCircularQueue) IsEmpty() bool {
return this.length == 0
}
func (this *MyCircularQueue) IsFull() bool {
return this.length == this.capacity
}
/**
* Your MyCircularQueue object will be instantiated and called as such:
* obj := Constructor(k);
* param_1 := obj.EnQueue(value);
* param_2 := obj.DeQueue();
* param_3 := obj.Front();
* param_4 := obj.Rear();
* param_5 := obj.IsEmpty();
* param_6 := obj.IsFull();
*/