Home > Java > javaTutorial > body text

How to implement insertion sort in Java

小老鼠
Release: 2024-01-18 16:57:44
Original
1312 people have browsed it

Implementation method: 1. Create a Java sample file; 2. Use the sort method to insert the sorting algorithm; 3. Use a for loop to traverse the array and insert each element into the correct position in the sorted partial array; 4. Sort the array in the main method; 5. Output the result.

How to implement insertion sort in Java

Operating system for this tutorial: Windows 10 system, Dell G3 computer.

Insertion sort algorithm can be implemented in Java using the following code:

public class InsertionSort {
    public static void sort(int[] arr) {
        int n = arr.length;
        for (int i = 1; i < n; i++) {
            int key = arr[i];
            int j = i - 1;
            while (j >= 0 && arr[j] > key) {
                arr[j + 1] = arr[j];
                j--;
            }
            arr[j + 1] = key;
        }
    }
    public static void main(String[] args) {
        int[] arr = {5, 2, 8, 3, 9, 1};
        sort(arr);
        for (int num : arr) {
            System.out.print(num + " ");
        }
    }
}
Copy after login

In the above example , the sort method implements the insertion sort algorithm. The algorithm iterates through the array, inserting each element into the correct position in the sorted partial array. Finally, the array is sorted and the results are output in the main method.

The above is the detailed content of How to implement insertion sort in Java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!