-
-
Notifications
You must be signed in to change notification settings - Fork 46.6k
Feature/stack using two queues #10086
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
Closed
OneSouhardyo
wants to merge
9
commits into
TheAlgorithms:master
from
OneSouhardyo:feature/StackUsingTwoQueues
Closed
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c36e0c4
Added feature Stack Using Two Queues
OneSouhardyo 860cc55
feature/Added-StackUsingTwoQueues
OneSouhardyo db8e457
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 847721f
Added Doctest
OneSouhardyo 979bf79
Added Doctest
OneSouhardyo 609aeff
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 24931d3
Added type to argument
OneSouhardyo 9beb2ea
Merge branch 'feature/StackUsingTwoQueues' of https://github.com/OneS…
OneSouhardyo d68b408
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"githubPullRequests.ignoredPullRequestBranches": [ | ||
"master" | ||
] | ||
], | ||
"python.analysis.typeCheckingMode": "basic" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
class StackUsingQueues: | ||
def __init__(self) -> None: | ||
""" | ||
Initialize the stack using two queues. | ||
|
||
>>> stack = StackUsingQueues() | ||
""" | ||
self.queue1 = [] | ||
self.queue2 = [] | ||
|
||
def push(self, item) -> None: | ||
""" | ||
Push an item onto the stack. | ||
|
||
>>> stack = StackUsingQueues() | ||
>>> stack.push(1) | ||
>>> stack.push(2) | ||
>>> stack.push(3) | ||
>>> stack.peek() | ||
3 | ||
""" | ||
while len(self.queue1) != 0: | ||
self.queue2.append(self.queue1[0]) | ||
self.queue1.pop(0) | ||
self.queue1.append(item) | ||
while len(self.queue2) != 0: | ||
self.queue1.append(self.queue2[0]) | ||
self.queue2.pop(0) | ||
|
||
def pop(self) -> int: | ||
""" | ||
Pop the top item from the stack and return it. | ||
|
||
>>> stack = StackUsingQueues() | ||
>>> stack.push(1) | ||
>>> stack.push(2) | ||
>>> stack.pop() | ||
2 | ||
>>> stack.pop() | ||
1 | ||
>>> stack.pop() | ||
0 | ||
""" | ||
if len(self.queue1) != 0: | ||
popped = self.queue1.pop(0) | ||
return popped | ||
else: | ||
return 0 | ||
|
||
def peek(self) -> int: | ||
""" | ||
Return the top item from the stack without removing it. | ||
|
||
>>> stack = StackUsingQueues() | ||
>>> stack.push(1) | ||
>>> stack.push(2) | ||
>>> stack.peek() | ||
2 | ||
>>> stack.pop() | ||
2 | ||
>>> stack.peek() | ||
1 | ||
>>> stack.pop() | ||
1 | ||
>>> stack.peek() | ||
0 | ||
""" | ||
if len(self.queue1) != 0: | ||
return self.queue1[0] | ||
else: | ||
return 0 | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Please provide type hint for the parameter:
item