-
Notifications
You must be signed in to change notification settings - Fork 41
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 and queues done #18
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.
Well done Denise, you hit the learning goals here. Nice work!
@store = Array.new(20) | ||
@start = 0 | ||
# @end = 0 | ||
@size = 0 | ||
end | ||
|
||
def enqueue(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.
👍
if size < 20 | ||
@store[(@start + @size) % 20] = element | ||
@size += 1 | ||
end | ||
end | ||
|
||
def dequeue |
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.
👍
raise NotImplementedError, "Not yet implemented" | ||
if @size != 0 | ||
element = @store[@start] | ||
@start = (@start + 1 ) % 20 |
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.
Avoid hardcoding the 20
@start = (@start + 1 ) % 20 | |
@start = (@start + 1 ) % @store.length |
@start = (@start + 1 ) % 20 | ||
@size -= 1 | ||
return element | ||
end | ||
end | ||
|
||
def 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.
👍
end | ||
|
||
def front | ||
raise NotImplementedError, "Not yet implemented" | ||
return @store[@start] | ||
end | ||
|
||
def size |
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.
👍
end | ||
|
||
def size | ||
raise NotImplementedError, "Not yet implemented" | ||
return @size | ||
end | ||
|
||
def empty? |
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.
👍
end | ||
|
||
def empty? | ||
raise NotImplementedError, "Not yet implemented" | ||
return @size == 0 | ||
end | ||
|
||
def to_s |
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.
👍
@@ -1,19 +1,26 @@ | |||
class 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.
👍
Stacks and Queues
Thanks for doing some brain yoga. You are now submitting this assignment!
Comprehension Questions
OPTIONAL JobSimulation