Heim > Java > javaLernprogramm > Hauptteil

Sortieralgorithmen in Java

PHPz
Freigeben: 2024-08-30 15:29:53
Original
313 Leute haben es durchsucht

Um die Informationen in einer bestimmten Reihenfolge zu sortieren, oft innerhalb eines Array-ähnlichen Rahmens, müssen Sie sie anordnen. Sie können unterschiedliche Reihenfolgeanforderungen verwenden; Beliebte Methoden sind das Sortieren von Zahlen vom kleinsten zum größten oder umgekehrt oder das lexikografische Sortieren von Zeichenfolgen. Wir werden verschiedene Algorithmen behandeln, von ineffektiven, aber intuitiven Alternativen bis hin zu effizienten Algorithmen, die effektiv in Java und anderen Sprachen implementiert sind, wenn Sie daran interessiert sind, wie das Sortieren funktionieren soll.

Verschiedene Sortieralgorithmen in Java

Es gibt verschiedene Sortieralgorithmen und nicht alle sind gleich effektiv. Um sie zu vergleichen und herauszufinden, welche die beste Leistung erbringen, werden wir ihre zeitliche Komplexität analysieren.

WERBUNG Beliebter Kurs in dieser Kategorie JAVA MASTERY - Spezialisierung | 78 Kursreihe | 15 Probetests
  1. Einfügesortierung
  2. Blasensortierung
  3. Auswahl sortieren
  4. Sortierung zusammenführen
  5. Heapsort

1. Einfügungssortierung

Das Konzept hinter Insertion Sort unterteilt den Bereich in sortierte und unsortierte Unterarrays. Der klassifizierte Teil befindet sich am Anfang der Dauer 1 und entspricht der ersten (linken) Komponente im Array. Wir bewegen uns durch das Array und erweitern den klassifizierten Teil des Arrays bei jeder Iteration um eine Komponente. Wenn wir erweitern, positionieren wir das neue Element im sortierten Unterarray. Wir tun dies, indem wir alle Elemente nach rechts verschieben, bis wir feststellen, dass wir die erste Komponente nicht ändern müssen. Wenn der fett gedruckte Teil in aufsteigender Reihenfolge sortiert wird, beispielsweise im folgenden Array, erscheint Folgendes:

  1. 3 5 7 8 4 2 1 9 6: Betrachten Sie 4 und das Einfügen ist das, was wir brauchen. Wir wechseln seit 8 > 4
  2. 2. 3 5 7 x 8 2 1 9 6
  3. 3 5 x 7 8 2 1 9 6
  4. 3 x 5 7 8 2 1 9 6
  5. 3 4 5 7 8 2 1 9 6

Code:

public class InsertionSortEx {
public static void insertionSort(int[] arr) {
for (int x = 1; x < arr.length; x++) {
int current = arr[x];
int y = x - 1;
while(y >= 0 && current < arr[y]) {
arr[y+1] = arr[y];
y--;
}
arr[y+1] = current;
}
}
public static void main(String a[]){
int[] arr1 = {3,5,7,8,4,2,1,9,6};
System.out.println("Before Sorting");
for(int x:arr1){
System.out.print(x+" ");
}
System.out.println();
insertionSort(arr1);//sorting array using insertion sort
System.out.println("After Insertion Sorting");
for(int x:arr1){
System.out.print(x+" ");
}
}
}
Nach dem Login kopieren

Ausgabe:

Sortieralgorithmen in Java

Nach dieser Methode erweiterte eine Komponente den sortierten Teil; wir haben jetzt fünf statt vier Elemente. Dies geschieht bei jeder Iteration und das gesamte Array wird am Ende sortiert.

Hinweis: Dies liegt daran, dass wir in jeder Iteration die gesamte klassifizierte Liste einzeln übertragen müssen, also O(n). Wir müssen dies für jede Komponente in jeder Tabelle tun, was bedeutet, dass sie O(n^2)-begrenzt ist.2.

2. Blasensortierung

Wenn die Blase nicht in der erforderlichen Reihenfolge ist, ersetzt sie benachbarte Komponenten. Dies wird wiederholt, bis alle Komponenten vom Anfang des Arrays an in Ordnung sind. Wir wissen, dass, wenn es uns gelingt, die gesamte Iteration ohne Swaps durchzuführen, alle Elemente im Vergleich zu ihren angrenzenden Elementen in der gewünschten Reihenfolge waren und damit auch das gesamte Array. Der Grund für den Bubble-Sort-Algorithmus liegt darin, dass die Zahlen wie „Blasen“ in den „Boden“ gelangen. Wenn Sie nach einem bestimmten Betrag die Instanz erneut durchgehen (4 ist eine gute Instanz), werden Sie feststellen, dass sich die Zahl langsam nach rechts bewegt.

Die Schritte zur Blasensortierung sind wie folgt:

  1. 4 21 5 3: Hier sind 1st zwei Zahlen nicht in der richtigen Reihenfolge; Daher müssen wir beide Zahlen sortieren.
  2. 4 15 3: Danach ist auch das nächste Zahlenpaar nicht in der richtigen Reihenfolge. Die Sortierung erfolgt also erneut.
  3. 2 1 4 53: Diese beiden sind in der richtigen Reihenfolge, 4 < 5, daher besteht keine Notwendigkeit, sie auszutauschen.
  4. 2 1 4 5 3: Auch hier müssen wir für die richtige Reihenfolge tauschen.
  5. 2 1 4 3 5: Hier ist das resultierende Array nach einer Iteration.
  6. Wir müssen diesen Vorgang noch einmal wiederholen, bis die Zahlen in der richtigen Reihenfolge sind.

Code:

public class BubbleSortExample {
public static void bubbleSort(int[] arr) {
int n = arr.length;
int tmp = 0;
for(int x=0; x < n; x++){
for(int y=1; y < (n-x); y++){
if(arr[y-1] > arr[y]){
//swap elements
tmp = arr[y-1];
arr[y-1] = arr[y];
arr[y] = tmp;
}
}
}
}
public static void main(String[] args) {
int arr[] ={4,2,1,5,3};
System.out.println("Array Before Bubble Sort");
for(int x=0; x < arr.length; x++){
System.out.print(arr[x] + " ");
}
System.out.println();
bubbleSort(arr);
System.out.println("Array After Bubble Sort");
for(int x=0; x < arr.length; x++){
System.out.print(arr[x] + " ");
}
}
}
Nach dem Login kopieren

Ausgabe:

Sortieralgorithmen in Java

Hinweis: Wenn ich a[i]>= a[i+1 ] verwendet hätte, wäre es möglicherweise in einer Endlosschleife gelandet, da diese Verbindung mit äquivalenten Komponenten immer noch gültig wäre und diese daher immer gegeneinander ausgetauscht würden Element zu einem anderen.

3. Auswahl sortieren

Auswahlsortierung teilt das Array in ein Array von Klassifizierungen auf, die nicht sortiert sind. Dieses Mal wird das Sortier-Subarray jedoch gebildet, indem am Ende des sortierten Arrays das minimale Element des unsortierten Subarrays durch Vertauschen eingefügt wird:

  1. 3 5 12 4
  2. 15 3 2 4
  3. 1 23 5 4
  4. 1 2 34
  5. 1 2 3 45
  6. 1 2 3 4 5

Code:

public class SelectionSortEx {
public static void selectionSort(int[] arr){
for (int x = 0; x < arr.length - 1; x++)
{
int indx = x;
for (int y = x + 1; y < arr.length; y++){
if (arr[y] < arr[indx]){
indx = y;
}
}
int smallNumber = arr[indx];
arr[indx] = arr[x];
arr[x] = smallNumber;
}
}
public static void main(String a[]){
int[] arr1 = {3,5,1,2,4};
System.out.println("Before Sorting");
for(int x:arr1){
System.out.print(x+" ");
}
System.out.println();
selectionSort(arr1);
System.out.println("After Selection Sorting");
for(int x:arr1){
System.out.print(x+" ");
}
}
}
Nach dem Login kopieren

Ausgabe:

Sortieralgorithmen in Java

Note: The minimum is O(n) for the array size because all the components must be checked. For each element of the array, we must find the minimum and make the whole process O (n^2) limited.

4. Merge Sort

Merge Sort utilizes recursion to fix the issue of the divide and conquest method more effectively than earlier described algorithms.

Sortieralgorithmen in Java

This tree shows how the recursive calls function. Down arrow marked arrays are the arrays for which we call function while we fuse up arrow arrays. Then you follow the arrow to the tree’s edge and then return and merge. We’ve got 3 5 3 1 range, so we split it into 3 5 4 and 2 1. We split them into their parts in order to sort them. We begin fusioning and sorting them as we go when we get to the bottom.

Code:

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;
public class MergeSort {
static void merge(int[] array,int lowval,int midval,int highval){
int x, y ,k;
int[] c= new int[highval-lowval+1];
k = 0;
x=lowval;
y=midval+1;
while(x<=midval && y<=highval){
if(array[x]<=array[y]){
c[k++] = array[x++];
}
else{
c[k++] = array[y++];
}
}
while(x<=midval){
c[k++] = array[x++];
}
while(y<=highval){
c[k++] = array[y++];
}
k=0;
for(x = lowval; x<=highval; x++){
array[x] = c[k++];
}
}
static void mergeSort(int[] array,int lowval, int highval){
if(highval-lowval+1>1){
int midval = (lowval+highval)/2;
mergeSort(array,lowval,midval);
mergeSort(array,midval+1,highval);
merge(array,lowval,midval,highval);
}
}
public static void main(String[] args) {
BufferedReader r = new BufferedReader(new InputStreamReader(System.in));
int size;
System.out.println("Enter the array");
try {
size = Integer.parseInt(r.readLine());
} catch (Exception e) {
System.out.println("Please Enter valid Input");
return;
}
int[] array = new int[size];
System.out.println("Enter array elements");
int x;
for (x = 0; x < array.length; x++) {
try {
array[x] = Integer.parseInt(r.readLine());
} catch (Exception e) {
System.out.println("An error Occurred");
}
}
System.out.println("After Sorting");
System.out.println(Arrays.toString(array));
mergeSort(array,0,array.length-1);
System.out.println("Before Merge Sorting");
System.out.println(Arrays.toString(array));
}
}
Nach dem Login kopieren

In this program, we have asked the user to enter input. The output will be in sorted order based on the user’s input.

Output:

Sortieralgorithmen in Java

5. Heap Sort

You first must know the framework on which Heapsort operates-the heap-in order to comprehend why it operates. We will specifically speak about a binary heap, but you can also generalize this to other heap constructions. A heap is a tree that fulfills the property of the heap, namely that all its kids have relationships to each node. A heap must also be nearly finished. A near-complete d-depth binary has a d-1 subtree with the same root, and each node has a full, left subtree, with a left descending.

In other words, you get a lower and lower number (min-heap) or larger and bigger (max-heap) when moving down the tree. Here is a max-heap instance:

Sortieralgorithmen in Java

  1. 6 1 8 3 5 2 4: Here, Both children’s numbers are smaller than the parent; hence we do not have to change anything.
  2. 6 1 8 3 52 4: Here, 5 > 1, we need to swap them. We need to heapify for 5.
  3. 6 5 8 3 12 4: Both of the children’s numbers are smaller; everything remains the same.
  4. 6 5 83 1 2 4: Here, 8 > 6, hence we should swap them.
  5. 8 5 6 3 1 2 4: After this iteration, we will get this result.
  6. After Repeating this process again, we will get the following results:

    • 8 5 6 3 1 2 4
    1. 4 5 6 3 1 2 8: Swapping
    2. 6 5 4 3 1 2 8: Heapify
    3. 2 5 4 3 1 6 8: Swapping
    4. 5 2 4 2 1 6 8: Heapify
    5. 1 2 4 2 5 6 8: Swapping

    Code:

    public class HeapSort
    {
    public void sort(int arr[])
    {
    int n = arr.length;
    for (int x = n / 2 - 1; x >= 0; x--)
    heapify(arr, n, x);
    for (int x=n-1; x>=0; x--)
    int tmp = arr[0];
    arr[0] = arr[x];
    arr[x] = tmp;
    heapify(arr, x, 0);
    }
    }
    void heapify(int arr[], int n, int x)
    {
    int largest = x;
    int L = 2*x + 1;
    int r = 2*x + 2;
    if (L < n && arr[L] > arr[largest])
    largest = L;
    if (r < n && arr[r] > arr[largest])
    largest = r;
    if (largest != x)
    {
    int swap = arr[x];
    arr[x] = arr[largest];
    arr[largest] = swap;
    heapify(arr, n, largest);
    }
    }
    static void printArray(int arr[])
    {
    int n = arr.length;
    for (int x=0; x<n; ++x)
    System.out.print(arr[x]+" ");
    System.out.println();
    }
    public static void main(String args[])
    {
    int arr[] = {6,1,8,3,5,2,4};
    int n = arr.length;
    System.out.println("Before Sorting:");
    printArray(arr);
    HeapSort ob = new HeapSort();
    ob.sort(arr);
    System.out.println("After Heap Sorting:");
    printArray(arr);
    }
    }
    Nach dem Login kopieren

    Output:

    Sortieralgorithmen in Java

    You can view it from point to level of the graph, from left to right. We achieved here that when we have the kth component in the array, the position of its children is 2\*k+1 and 2\*k+2 (assuming that indexing begins at 0). You can monitor this. The position of the parent is always (k-1)/2 for the kth component. You can readily “max heap up” any range because you know that. Check whether one of its kids is lower than that for each component. If so, pair one parent and repeat this step recursively with the parent.

    Note: Since iterating for-loops across the entire array makes heapSort) (obviously O(N), it would create Heapsort O’s overall complexity(nlog n). Heapsort has an on-the-spot type, which means that it requires O(1) more room than Merge Sort, but it has some disadvantages, such as parallels that are hard.

    Conclusion – Sorting Algorithms in Java

    Sorting is a very prevalent procedure with datasets, whether for further analysis, speeding search with more effective algorithms relying on sorted information, filtering information, etc. Several languages endorse sorting, and often the interfaces obscure what the programmer does.

    Das obige ist der detaillierte Inhalt vonSortieralgorithmen in Java. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Verwandte Etiketten:
Quelle:php
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!