-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfastqueue.py
144 lines (105 loc) · 3.29 KB
/
fastqueue.py
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
class Queue:
def __init__(self, iterable) -> None:
"""Initialize the Queue object.
:param iterable (Optional[Iterable], optional): An iterable to
initialize the Queue with. Defaults to None
:param self:
"""
pass
def enqueue(self, item) -> None:
"""Add an item to the front of the Queue.
:param item: (Any): The item to be added to the Queue.
:param self:
"""
pass
def dequeue(self):
"""Remove and return an item from the end of the Queue.
:return: The item removed from the Queue.
"""
pass
def extend(self, items) -> None:
"""Enqueue a sequence of elements from an iterator.
:param items: (Iterable[Any]): An iterable containing the
elements to be enqueued.
:param self:
"""
pass
def __len__(self) -> int:
pass
def is_empty(self) -> bool:
"""Returns whether the Queue is empty.
:return: True if the Queue is empty, False otherwise.
"""
pass
def __getitem__(self, index: int):
pass
def __setitem__(self, index: int, item) -> None:
pass
def __contains__(self, item) -> bool:
pass
def copy(self):
"""Return a shallow copy of the Queue.
:return: A shallow copy of the Queue object.
"""
pass
def __copy__(self):
"""Return a shallow copy of the Queue.
:return: A shallow copy of the Queue object.
"""
pass
class Queue:
def __init__(self, iterable) -> None:
"""Initialize the Queue object.
:param iterable (Optional[Iterable], optional): An iterable to
initialize the Queue with. Defaults to None
:param self:
"""
pass
def enqueue(self, item) -> None:
"""Add an item to the front of the Queue.
:param item: (Any): The item to be added to the Queue.
:param self:
"""
pass
def dequeue(self):
"""Remove and return an item from the end of the Queue.
:return: The item removed from the Queue.
"""
pass
def extend(self, items) -> None:
"""Enqueue a sequence of elements from an iterator.
:param items: (Iterable[Any]): An iterable containing the
elements to be enqueued.
:param self:
"""
pass
def __len__(self) -> int:
pass
def is_empty(self) -> bool:
"""Returns whether the Queue is empty.
:return: True if the Queue is empty, False otherwise.
"""
pass
def __getitem__(self, index: int):
pass
def __setitem__(self, index: int, item) -> None:
pass
def __contains__(self, item) -> bool:
pass
def copy(self):
"""Return a shallow copy of the Queue.
:return: A shallow copy of the Queue object.
"""
pass
def __copy__(self):
"""Return a shallow copy of the Queue.
:return: A shallow copy of the Queue object.
"""
pass
class LockQueue(Queue):
def get(self):
"""Return the first element of the LockQueue, None if no element exists.
:return: The first element of the LockQueue, or None if the LockQueue
is empty.
"""
pass