-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoop_stack.py
107 lines (82 loc) · 2.65 KB
/
oop_stack.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
"""Stack implementation using oop style."""
from data_structure.base_collection import BaseCollection, Position
from data_structure.exceptions.collection_exeption import (
CollectionIsEmptyExeption,
)
from data_structure.exceptions.error_messages import stack_is_empty
class Stack(object):
"""Class implements the data structure stack."""
def __init__(self):
"""List-based stack implementation."""
self._stack = BaseCollection()
def __str__(self):
"""Return a string representation of the contents of a stack.
Returns:
str (string): contents of a stack
"""
return str(self._stack)
def __iter__(self):
"""Return self.
Returns:
iterator (Stack): iterator
"""
return iter(self._stack)
def __len__(self):
"""Return size of stack.
Returns:
size (int): stack size
"""
return self._stack.size
@property
def size(self):
"""Return size of stack.
Returns:
size (int): stack size
"""
return self._stack.size
@property
def is_empty(self):
"""Return True if stack is empty.
Returns:
size (bool): true if stack is empry, else false
"""
return self._stack.size == 0
def push(self, element):
"""Add element in stack.
Args:
element: element for added in stack
"""
self._stack.insert(element, Position.last)
def pop(self):
"""Extract item from stack.
Returns:
item: top item from stack
Raises:
CollectionIsEmptyExeption: if stack is empty
"""
if self.is_empty:
raise CollectionIsEmptyExeption(stack_is_empty())
return self._stack.extract()
def pop_while(self, comparator):
"""Extract item while comparator is true.
Args:
comparator(function): return true or false
Yields:
item: item from stack
"""
while not self.is_empty:
top_elem = self.peek()
if comparator(top_elem):
yield self.pop()
else:
break
def peek(self):
"""Return the element at the top of the stack.
Returns:
value: element at the top of the stack
Raises:
CollectionIsEmptyExeption: if stack is empty
"""
if self.is_empty:
raise CollectionIsEmptyExeption(stack_is_empty())
return self._stack.peek()