logo

Добавете елементи към Array в Java

Масивът е колекция от подобни типове елементи, съхранявани на съседни места в паметта. Основното предимство на масива е, че имаме произволен достъп до елементите на масива, докато елементите на свързания списък не могат да бъдат произволно достъпни.

в Java , Масиви са променливи типове данни, т.е. размерът на масива е фиксиран и не можем директно да добавим нов елемент в масива. Има обаче различни начини за добавяне на елементи към масива. Да предположим, че имаме масив arr и трябва да добавим елементи към него. Можем да използваме следните методи за добавяне на елементи към arr.

  1. Чрез създаване на масив с по-голям размер от arr.
  2. С помощта на ArrayList
  3. Чрез преместване на елемента за регулиране на размера на обр.

Нека надникнем отвътре в начините, които описахме.

Създаване на масив с по-голям размер

За да добавим елементи в масива на Java, можем да създадем друг масив с по-голям размер и да копираме всички елементи от нашия масив в друг масив и да поставим новата стойност най-накрая в новосъздадения масив. Това обаче не е ефективен начин за добавяне на елемент към масива. В примера по-долу елемент 7 се добавя към масива arr с помощта на новосъздадения масив newArr. Помислете за следния пример.

 import java.util.Arrays; public class ArrayExample { public static void main(String[] args) { // TODO Auto-generated method stub int arr[] = {1,2,3,4,5,6}; int n = arr.length; int newArr[] = new int[n+1]; int value = 7; System.out.println(Arrays.toString(arr)); for(int i = 0; i<n; i++) { newarr[i]="arr[i];" } newarr[n]="value;" system.out.println(arrays.tostring(newarr)); < pre> <h3>Using ArrayList</h3> <p>We can use <a href="/java-arraylist">ArrayList</a> as the intermediate structure and add the elements into the ArrayList using the add () method. ArrayList is a data structure that allows us to dynamically add elements. However, we can convert the ArrayList to the array by using the toArray() method. Hence this process involves the following steps.</p> <ol class="points"> <li>Convert Array into ArrayList using asList() method.</li> <li>Add elements into the array list using the add() method.</li> <li>Convert the ArrayList again to the array using the toArray() method.</li> </ol> <p>Consider the following example.</p> <pre> import java.util.ArrayList; import java.util.Arrays; public class JavaAddElementUsingList { public static void main(String[] args) { // TODO Auto-generated method stub Integer arr[] = {1,2,3,4,5,6}; System.out.println(&apos;Array:&apos;+Arrays.toString(arr)); ArrayList arrayList = new ArrayList(Arrays.asList(arr)); arrayList.add(7); arr = arrayList.toArray(arr); System.out.println(&apos;Array after adding element: &apos;+Arrays.toString(arr)); } } </pre> <p> <strong>Output:</strong> </p> <pre> Array:[1, 2, 3, 4, 5, 6] Array after adding element: [1, 2, 3, 4, 5, 6, 7] </pre> <h3>Shifting elements to adjust the size of the array</h3> <p>In this method, we will add the elements to the specified index in the array. Likewise, the above two processes will use a new destination array with a larger size than the original array. However, it will be tricky to shift the destination array elements after copying all elements from the original array to destination array.</p> <p>In this method, we will,</p> <ol class="points"> <li>Create a new destination array with a larger size than the original array.</li> <li>Copy all the elements from the original array to the new destination array</li> <li>Shift the elements after the given index to the right until it reaches the end of the array.</li> <li>Insert the new element at the given index.</li> </ol> <p>Consider the following example in which we will add a specific value at the given index 3 in the original array using a destination array.</p> <pre> import java.util.Arrays; public class JavaAddElementArraySpecified { public static void main(String[] args) { Integer arr[] = {1,2,3,4,5,6}; int n = arr.length; int index = 3; System.out.println(&apos;Original Array: &apos;+Arrays.toString(arr)); Integer newArr[] = new Integer[n+1]; int j = 0; for(int i = 0; i<newarr.length; i++) { if(i="=index)" newarr[i]="7;" }else j++; } newarr[index]="7;" system.out.println('array after adding value: '+arrays.tostring(newarr)); < pre> <p> <strong>Output:</strong> </p> <pre> Original Array: [1, 2, 3, 4, 5, 6] Array after adding value: [1, 2, 3, 7, 4, 5, 6] </pre> <hr></newarr.length;></pre></n;>

Изход:

 Array:[1, 2, 3, 4, 5, 6] Array after adding element: [1, 2, 3, 4, 5, 6, 7] 

Преместване на елементи за регулиране на размера на масива

В този метод ще добавим елементите към посочения индекс в масива. По същия начин горните два процеса ще използват нов целеви масив с по-голям размер от оригиналния масив. Въпреки това ще бъде трудно да се преместят елементите на целевия масив след копиране на всички елементи от оригиналния масив в целевия масив.

В този метод ще,

  1. Създайте нов целеви масив с по-голям размер от оригиналния масив.
  2. Копирайте всички елементи от оригиналния масив в новия целеви масив
  3. Преместете елементите след дадения индекс надясно, докато стигне до края на масива.
  4. Вмъкнете новия елемент в дадения индекс.

Разгледайте следния пример, в който ще добавим конкретна стойност към дадения индекс 3 в оригиналния масив, като използваме целеви масив.

 import java.util.Arrays; public class JavaAddElementArraySpecified { public static void main(String[] args) { Integer arr[] = {1,2,3,4,5,6}; int n = arr.length; int index = 3; System.out.println(&apos;Original Array: &apos;+Arrays.toString(arr)); Integer newArr[] = new Integer[n+1]; int j = 0; for(int i = 0; i<newarr.length; i++) { if(i="=index)" newarr[i]="7;" }else j++; } newarr[index]="7;" system.out.println(\'array after adding value: \'+arrays.tostring(newarr)); < pre> <p> <strong>Output:</strong> </p> <pre> Original Array: [1, 2, 3, 4, 5, 6] Array after adding value: [1, 2, 3, 7, 4, 5, 6] </pre> <hr></newarr.length;>