title | date | draft | tags | categories | |||
---|---|---|---|---|---|---|---|
Algorithm4 Java Solution 1.3.14 |
2019-07-04 05:47:10 +0800 |
false |
|
|
Develop a class ResizingArrayQueueOfStrings that implements the queue abstraction with a fixed-size array, and then extend your implementation to use array resizing to remove the size restriction.
-
we use a Circular queue.
-
resize array when needed.