Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need help writing a method in java, that prepends an existing array and then doubles the array when I run out of space. Like

I need help writing a method in java, that prepends an existing array and then doubles the array when I run out of space. Like below except this array is not doubling. Also I cannot use a loop, for efficency. This is what I have so far:

[9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 0, 0, 0, 0] [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 0, 0, 0] [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 0, 0] [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 0]

public void prepend(int x) { if (length >= a.length){ int[]b = new int[a.length + 1];

for (int i = 0; i < a.length; i++){ b1[i] = a[i]; } a = b; } length = length + 1; }

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

Object Databases The Essentials

Authors: Mary E. S. Loomis

1st Edition

020156341X, 978-0201563412

More Books

Students also viewed these Databases questions