Skip to content
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

Stacks-queues (Sumitra, Scissors class) #33

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

sumitrac
Copy link

Stacks and Queues

Thanks for doing some brain yoga. You are now submitting this assignment!

Comprehension Questions

Question Answer
What is an ADT?
Describe a Stack
What are the 5 methods in Stack and what does each do?
Describe a Queue
What are the 5 methods in Queue and what does each do?
What is the difference between implementing something and using something?

OPTIONAL JobSimulation

Question Answer
Did you include a sample run of your code as a comment?

Copy link

@CheezItMan CheezItMan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work Sumitra, you hit the learning goals here. Well done. I made minor suggestions otherwise, well done.

Comment on lines +25 to +39
if self.size == self.buffer_size:
raise QueueFullException("Queue if full")

# condition for empty queue
elif (self.front == -1):
self.front = 0
self.rear = 0
self.store[self.rear] = element
self.size +=1

else:
# next position of rear
self.rear = (self.rear + 1) % self.buffer_size
self.store[self.rear] = element
self.size +=1

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Comment on lines +47 to +62
if self.size == 0:
raise QueueEmptyException("Queue is empty")

data = self.store[self.front]
self.store[self.front] = None
self.size -= 1

if self.front == self.rear:
self.front = -1
self.rear = -1
elif self.front == self.buffer_size-1:
self.front = 0
else:
self.front +=1

return data

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 However this could be simplified with the `self.front = (self.front + 1) % self.buffer_size

Comment on lines +69 to +71
if self.size == 0:
return None
return self.store[self.front]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Comment on lines +94 to +110
elements = []

if self.front == -1:
return str(elements)

elif self.rear >= self.front:
for element in range(self.front, self.rear+1):
elements.append(self.store[element])

else:
for element in range(self.front, self.buffer_size):
elements.append(self.store[element])

for element in range(0, self.rear+1):
elements.append(self.store[element])

return str(elements)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@@ -12,7 +12,9 @@ def push(self, element):
""" Adds an element to the top of the Stack.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 The stack looks good!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants