Question
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started