リストを2つに分割するJavaプログラム
この記事では、リストを2つに分割する方法を理解します。リストは、要素を順番に保存してアクセスできるようにする順序付けられたコレクションです。これには、要素を挿入、更新、削除、および検索するためのインデックスベースのメソッドが含まれています。重複する要素を持つこともできます。
以下は同じのデモンストレーションです-
入力がであると仮定します −
Input list :[Java, Python, JavaScript, Shell, Scala]
必要な出力は −
The first half of the list is: [Java, Python] The second half of the list is: [JavaScript, Shell, Scala]
アルゴリズム
Step 1 - START Step 2 - Declare three array list namely input_list, first_list, second_list. Step 3 - Define the values. Step 4 - Get the size of the array using the function .size(). Step 5 - Iterate the input_list using a for-loop, add all the elements with index lesser the size/2 index value to the first_list and add all the elements with index greater the size/2 index value to the second_list using the .add() function. Step 6 - Display the result Step 7 - Stop
例1
ここでは、「main」関数の下ですべての操作をバインドします。
import java.util.ArrayList; import java.util.List; public class Demo { public static void main(String[] args) { System.out.println("Required packages have been imported"); List<String> input_list = new ArrayList<String>(); input_list.add("Java"); input_list.add("Python"); input_list.add("JavaScript"); input_list.add("Shell"); input_list.add("Scala"); System.out.println("The list is defined as " +input_list); List<String> first_list = new ArrayList<String>(); List<String> second_list = new ArrayList<String>(); int size = input_list.size(); System.out.println("\nThe first half of the list is: "); for (int i = 0; i < size / 2; i++) first_list.add(input_list.get(i)); System.out.println(first_list); System.out.println("The second half of the list is: "); for (int i = size / 2; i < size; i++) second_list.add(input_list.get(i)); System.out.println(second_list); } }
出力
Required packages have been imported The list is defined as [Java, Python, JavaScript, Shell, Scala] The first half of the list is: [Java, Python] The second half of the list is: [JavaScript, Shell, Scala]
例2
ここでは、操作をオブジェクト指向プログラミングを示す関数にカプセル化します。
import java.util.ArrayList; import java.util.List; public class Demo { static void split_list(List<String> input_list) { List<String> first_list = new ArrayList<String>(); List<String> second_list = new ArrayList<String>(); int size = input_list.size(); System.out.println("\nThe first half of the list is: "); for (int i = 0; i < size / 2; i++) first_list.add(input_list.get(i)); System.out.println(first_list); System.out.println("The second half of the list is: "); for (int i = size / 2; i < size; i++) second_list.add(input_list.get(i)); System.out.println(second_list); } public static void main(String[] args) { System.out.println("Required packages have been imported"); List<String> input_list = new ArrayList<String>(); input_list.add("Java"); input_list.add("Python"); input_list.add("JavaScript"); input_list.add("Shell"); input_list.add("Scala"); System.out.println("The list is defined as " +input_list); split_list(input_list); } }
出力
Required packages have been imported The list is defined as [Java, Python, JavaScript, Shell, Scala] The first half of the list is: [Java, Python] The second half of the list is: [JavaScript, Shell, Scala]
-
偶数要素と奇数要素を2つの異なるリストに分割するJavaプログラム
偶数要素と奇数要素を2つの異なるリストに分割するための、Javaコードは次のとおりです- 例 import java.util.Scanner; public class Demo{ public static void main(String[] args){ int n, j = 0, k = 0; Scanner s = new Scanner(System.in); System.out.println("Enter the
-
2つ以上のファイルを3番目のファイルに交互にマージするJavaプログラム
−として3つのファイルがあると仮定します output1.txt Hello how are you output2.txt Welcome to Tutorialspoint output3.txt We provide simply easy learning 例 次のJavaの例では、上記の3つのファイルの内容を1つのファイルに交互にマージします- import java.util.Scanner; public class MergingFiles { public static void main(String args[]) th