Open
Description
algoClass/data-structures/queue.js
Line 153 in 58517aa
Queue_TwoStack should receive capacity argument and pass to new Stack, like below.
function Queue_TwoStack (capacity) {
this._stackIn = new Stack(capacity);
this._stackOut = new Stack(capacity);
}
Metadata
Metadata
Assignees
Labels
No labels