Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Create a Java class called StringArrayHelper that has the following attributes: StringArrayHelper myArray[] - String size - Integer StringArrayHelper () StringArrayHelper (String[]) addItem(String) - Boolean

Create a Java class called StringArrayHelper that has the following attributes:

StringArrayHelper
myArray[] - String
size - Integer
StringArrayHelper ()
StringArrayHelper (String[])
addItem(String) - Boolean
removeItem(String) - Boolean
searchItem(String) - Boolean
sortArray() - Boolean
getSize() - Integer
getCapacity() - Integer
toString() - String

Note:

addItem(String) will add an item to the list if it will fit. It will add the item to the first available spot

removeItem(String) will remove the given item and move all items that appear after the removed one in the list up one spot. Leaving all null values at the end of the list.

searchItem(String) will return true if that given string exists within the list and false if it does not.

sortArray() will use a selection sort to sort the list and return true if the list is sorted.

getSize() will return the total number of items that are currently in the array.

getCapacity() returns the total number of items that the array could possibly hold.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions