Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 520 Bytes

Ex_1_3_08.md

File metadata and controls

29 lines (18 loc) · 520 Bytes
title date draft tags categories
Algorithm4 Java Solution 1.3.08
2019-07-04 05:47:10 +0800
false
JAVA
TECH
archives

1.3.08

Problem:

Give the contents and size of the array for DoublingStackOfStrings with the input it was - the best - of times - - - it was - the - -

Solution:

implement a vary sized string array stack.

if the array is full, then double the size of the array.

if the array is a quarter full, then shrink the size of the array to a half.

Reference: