マップをキーでソートするJavaプログラム
この記事では、地図をキーで並べ替える方法を理解します。 Java Mapインターフェースjava.util.Mapは、キーと値の間のマッピングを表します。より具体的には、JavaMapはキーと値のペアを格納できます。各キーは特定の値にリンクされています。
以下は同じのデモンストレーションです-
入力がであると仮定します −
Input map: {1=Scala, 2=Python, 3=Java}
必要な出力は −
The sorted map with the key: {1=Scala, 2=Python, 3=Java}
アルゴリズム
Step 1 - START Step 2 - Declare namely Step 3 - Define the values. Step 4 - Create a Map structure, and add values to it using the ‘put’ method. Step 5 - Create a TreeMap of strings. Step 6 - The Map sorts the values based on keys and stores it in TreeMap. Step 7 - Display this on the console. Step 8 - Stop
例1
ここでは、「main」関数の下ですべての操作をバインドします。
import java.util.HashMap; import java.util.Map; import java.util.TreeMap; public class Demo { public static void main(String[] args) { System.out.println("The required packages have been imported"); Map<String, String> input_map = new HashMap<>(); input_map.put("1", "Scala"); input_map.put("3", "Java"); input_map.put("2", "Python"); System.out.println("The map is defined as: " + input_map); TreeMap<String, String> result_map = new TreeMap<>(input_map); System.out.println("\nThe sorted map with the key: \n" + result_map); } }
出力
The required packages have been imported The map is defined as: {1=Scala, 2=Python, 3=Java} The sorted map with the key: {1=Scala, 2=Python, 3=Java}>
例2
ここでは、操作をオブジェクト指向プログラミングを示す関数にカプセル化します。
import java.util.HashMap; import java.util.Map; import java.util.TreeMap; public class Demo { static void sort( Map<String, String> input_map){ TreeMap<String, String> result_map = new TreeMap<>(input_map); System.out.println("\nThe sorted map with the key: \n" + result_map); } public static void main(String[] args) { System.out.println("The required packages have been imported"); Map<String, String> input_map = new HashMap<>(); input_map.put("1", "Scala"); input_map.put("3", "Java"); input_map.put("2", "Python"); System.out.println("The map is defined as: " + input_map); sort(input_map); } }
出力
The required packages have been imported The map is defined as: {1=Scala, 2=Python, 3=Java} The sorted map with the key: {1=Scala, 2=Python, 3=Java}>
-
カクテルソート用のJavaプログラム
カクテルソートは、要素が左から右に繰り返され、最大の要素が最初に正しい位置に移動されるバブルソートとは対照的に機能します。シェーカーソートでは、要素が交互に両方向(左と右)に繰り返されます。 以下は、カクテルソートのプログラムです- 例 public class Demo{ static int temp; static void Cocktail(int a[], int n){ boolean swap = true; int begin = 0,i;
-
回文をチェックするJavaプログラム
回文数は、逆にしたときに同じままの数です。たとえば、121、313、525などです。 例 回文をチェックする例を見てみましょう- public class Palindrome { public static void main(String[] args) { int a = 525, revVal = 0, remainder, val; val = a; System.out.println("Number to be che