Consider the following code that defines a ResizingArrayStackOfStrings:
public class ResizingArrayStackOfStrings
{
private String[] s;
private int N;
...
}
If the array is completely full, how many bytes does the stack use to store N strings? Give your answer in Tilde notation. Don't count the memory of the actual strings (impossible, since they are of unknown length).