-
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- Saejin #57
base: master
Are you sure you want to change the base?
Paper- Saejin #57
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 Saejin, you hit the learning goals here. I did make one comment on __str__
as it would not work in some instances.
def enqueue(self, element): | ||
""" Adds an element to the Queue | ||
Raises a QueueFullException if all elements | ||
In the store are occupied | ||
returns None | ||
""" | ||
pass | ||
|
||
if (self.rear + 1) % self.buffer_size == self.front: | ||
raise QueueFullException() | ||
|
||
elif self.empty(): | ||
self.front = 0 | ||
self.rear = 0 | ||
|
||
self.store[self.rear] = element | ||
self.rear = (self.rear + 1) % self.buffer_size | ||
self.size +=1 | ||
|
||
return None |
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.
👍
def dequeue(self): | ||
""" Removes and returns an element from the Queue | ||
Raises a QueueEmptyException if | ||
The Queue is empty. | ||
""" | ||
pass | ||
if self.empty(): | ||
raise QueueEmptyException() | ||
|
||
element = self.store[self.front] | ||
self.front = (self.front+1)%self.buffer_size | ||
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.
👍
def front(self): | ||
""" Returns an element from the front | ||
of the Queue and None if the Queue | ||
is empty. Does not remove anything. | ||
""" | ||
pass | ||
if self.isEmpty(): | ||
return -1 | ||
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.
👍
pass | ||
if self.isEmpty(): | ||
return -1 | ||
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.
👍
|
||
|
||
def size(self): | ||
""" Returns the number of elements in | ||
The Queue | ||
""" | ||
pass | ||
return self.size | ||
|
||
def empty(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.
👍
def __str__(self): | ||
""" Returns the Queue in String form like: | ||
[3, 4, 7] | ||
Starting with the front of the Queue and | ||
ending with the rear of the Queue. | ||
""" | ||
pass | ||
arr = [] | ||
|
||
for i in range(self.front, self.rear, 1): | ||
if self.store[i]: | ||
arr.append(self.store[i]) | ||
|
||
return str(arr) |
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,7 +12,8 @@ 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.
👍 Nice work, Stacks look good.
Stacks and Queues
Thanks for doing some brain yoga. You are now submitting this assignment!
Comprehension Questions
OPTIONAL JobSimulation