Question: Program Specification: An array that can grow and shrink (as needed) at run time is generally called a dynamic array. You are to write a

 Program Specification: An array that can grow and shrink (as needed)at run time is generally called a dynamic array. You are towrite a class named DynArray which can hold double values that adheres

Program Specification: An array that can grow and shrink (as needed) at run time is generally called a dynamic array. You are to write a class named DynArray which can hold double values that adheres to the following . The physical size of the array at all times is a nonnegative power of two (smallest of which is 1) The physical size is never more than 2 times the number of elements which occupy it (with exception to when it is at size 1). Mandatory Instance variables private double [] array; private int size; private int nextIndex; Mandatory Instance methods public DynArray) // constructor // set array to a new array of double, of size one // set size to one, // and set nextIndex to zero public int arraySize) // accessor // return the value of size public int elements) // accessor // return the value of nextIndex public double at (int index) // accessor // if 0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!