-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Whit - Paper #36
base: master
Are you sure you want to change the base?
Whit - Paper #36
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work Whit, you hit the learning goals here. Well done.
if self.size == self.buffer_size: | ||
self.__enlarge_capacity(self.resize_increment) | ||
|
||
if self.front == -1: | ||
self.front = 0 | ||
self.back = 0 | ||
|
||
self.store[self.back] = element | ||
self.back = (self.back + 1) % len(self.store) | ||
self.size += 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Love the __enlarge_capacity
function
if self.empty(): | ||
raise QueueEmptyException | ||
|
||
element = self.store[self.front] | ||
self.front = (self.front + 1) % len(self.store) | ||
self.size -= 1 | ||
|
||
return element |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
values = [] | ||
|
||
current = self.store.head | ||
while current: | ||
values.append(str(current.value)) | ||
current = current.next | ||
|
||
return ", ".join(values) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -12,27 +12,37 @@ def push(self, element): | |||
""" Adds an element to the top of the Stack. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Stack looks good!
Stacks and Queues
Thanks for doing some brain yoga. You are now submitting this assignment!
Comprehension Questions
OPTIONAL JobSimulation