Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyup98 committed Aug 25, 2021
1 parent 2bc2671 commit 65ae8f9
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
10 changes: 1 addition & 9 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Queues/src/RandomizedQueue.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ public Iterator<Item> iterator() {

private class RandomizedQueueIterator implements Iterator<Item> {
private int i;
public RandomizedQueueIterator() {
i = 0;
}
@Override
public boolean hasNext() {
return randomizeQueues[i] != null;
Expand Down
Binary file removed out/production/Queues/Node.class
Binary file not shown.
Binary file not shown.
Binary file modified out/production/Queues/RandomizedQueue.class
Binary file not shown.

0 comments on commit 65ae8f9

Please sign in to comment.