Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is in java. Here is the method header given: private String[] expandList(String[] inputList){ The question is to create a new array that is double

This is in java.

Here is the method header given: private String[] expandList(String[] inputList){

The question is to create a new array that is double the size of the array passed in, copies the old data to the new array.

Here is what I've done:

public class oldList{

int initialLength;

String[] oldList;

int items;

public oldList(int initialLen){ initialLength = initialLen; oldList = new String[initialLen]; int Items = 0; }

private String[] expandList(String[] inputList){

oldList = inputList[initialLength*2];

}

}

When I compile, there's the error oldList.java:133: error: incompatible types: String cannot be converted to String[]

I'm confused about the which is string which is array. So I can't even write code to copy the old data to the new array.

Please provide explanations with solutions.

Thank you.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2010 Barcelona Spain September 2010 Proceedings Part 2 Lnai 6322

Authors: Jose L. Balcazar ,Francesco Bonchi ,Aristides Gionis ,Michele Sebag

2010th Edition

364215882X, 978-3642158827

More Books

Students also viewed these Databases questions

Question

Demonstrate three aspects of assessing group performance?

Answered: 1 week ago