Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write the code for the method named remove2 in the file Arrays.java where the number of lines is less than the method we wrote together

Write the code for the method named "remove2" in the file Arrays.java where the number of lines is less than the method we wrote together in class

* *PLEASE DON'T USE HANDWRITING

public class Arrays{ private int[] array;

Arrays(int capacity){ array = new int[capacity];

}

public void remove(int index){ int[] temp = new int[array.length - 1]; for(int i = 0; i < index; i++) temp[i] = array[i]; for(int i = index; i < array.length - 1; i++) temp[i] = array[i + 1]; array = temp; } public void remove2(int index){ //write your code here }

public void removeFromFront(){ int[] temp = new int[array.length - 1]; for(int i = 1; i < array.length; i++) temp[i - 1] = array[i]; array = temp; } public void removeFromEnd(){ int[] temp = new int[array.length - 1]; for(int i = 0; i < array.length - 1; i++) temp[i] = array[i]; array = temp; } public void insert(int x){ int[] temp = new int[array.length + 1]; int i; for(i = 0; i < array.length && array[i] < x; i++) temp[i] = array[i]; temp[i++] = x; for(; i < temp.length; i++) temp[i] = array[i - 1]; array = temp; } public void addToEnd(int x){ int[] temp = new int[array.length + 1]; for(int i = 0; i < array.length; i++) temp[i] = array[i]; temp[temp.length - 1] = x; array = temp; } public void addToFront(int x){ int[] temp = new int[array.length + 1]; temp[0] = x; for(int i = 0; i < array.length; i++) temp[i+1] = array[i]; array = temp; } @Override public String toString(){ return java.util.Arrays.toString(array); }

}

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

More Books

Students also viewed these Databases questions

Question

What are the two major statutes regulating the securities industry?

Answered: 1 week ago

Question

Estimate P-values using the F distribution. AppendixLO1

Answered: 1 week ago

Question

2 The main characteristics of the market system.

Answered: 1 week ago