-
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
Paper: Stacks-Queues Exercise #56
base: master
Are you sure you want to change the base?
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 Erika, you hit the learning goals here. Well done.
# if size of queue is equal to buffer_size we raise a value error | ||
if self.size == self.buffer_size: | ||
raise QueueFullException | ||
|
||
# if queue is empty | ||
if self.front == -1: | ||
self.front = 0 | ||
self.rear = 1 | ||
self.store[self.front] = element | ||
self.size += 1 | ||
return | ||
|
||
self.store[self.rear] = element | ||
self.rear = (self.rear + 1 ) % self.buffer_size | ||
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.
👍 This works, but the code could be a little simplified.
# if queue is empty | ||
if self.size == 0: | ||
raise QueueEmptyException | ||
|
||
temp = self.store[self.front] | ||
self.front = (self.front + 1) % self.buffer_size | ||
self.size -= 1 | ||
|
||
return temp |
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.
👍
if self.size == 0: | ||
return None | ||
|
||
return self.store[self.front] |
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.
👍
if self.size == 0: | ||
return None | ||
|
||
return self.store[self.front] | ||
|
||
|
||
def size(self): |
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.
👍
if self.size == 0: | ||
return True | ||
else: | ||
return False |
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.
if self.size == 0: | |
return True | |
else: | |
return False | |
return self.size == 0 |
Stacks and Queues
Thanks for doing some brain yoga. You are now submitting this assignment!
Comprehension Questions
OPTIONAL JobSimulation