About 923,000 results
Open links in new tab
  1. Java Program for Selection Sort - GeeksforGeeks

    Jul 23, 2025 · The selection sort algorithm sorts an array by repeatedly finding the minimum element (considering ascending order) from the unsorted part and putting it at the beginning. Algorithm for …

  2. Selection Sort in Java - JavaByTechie

    Selection Sort in Java Last Updated: 06 October, 2024 🕓 5 Mins Sorting is the process of arranging a list of unsorted data in a particular order, either ascending or descending. Sort algorithms play a very …

  3. DSA using Java - Selection Sort: A Comprehensive Guide

    In the realm of Data Structures and Algorithms (DSA), sorting algorithms play a crucial role. They are used to arrange data in a particular order, which can be ascending or descending. One such …

  4. Selection Sort Visualizer | Simple Sorting Animation with Code in JS, C ...

    Visualize Selection Sort in action with step-by-step animations and code examples in JavaScript, C, Python, and Java. A beginner-friendly way to understand this simple sorting algorithm using …

  5. Selection Sort Algorithm - Online Tutorials Library

    Selection sort is a simple sorting algorithm. This sorting algorithm, like insertion sort, is an in-place comparison-based algorithm in which the list is divided into two parts, the sorted part at the left end …

  6. Selection Sort Algorithm Example in Java | DSA

    Selection Sort Algorithm in DSA (Java) Introduction Selection Sort is a simple comparison-based sorting algorithm used to arrange elements in ascending or descending order. It selects the minimum (or …

  7. Selection Sort Algorithm in Java (Data Structure) | DSA Placement ...

    Selection Sort in Data Structure | Sorting Algorithms in Java | DSA Placement GuideIn this video, you’ll learn Selection Sort from scratch — covering the log...

  8. Java Program for Bubble Sort - GeeksforGeeks

    Jul 23, 2025 · Please refer complete article on Bubble Sort for more details! Algorithm for Bubble Sort in Java The following is the algorithm to sort array in increasing order using bubble sort in Java: Start …

  9. Selection Sort | Practice | GeeksforGeeks

    Given an array arr, use selection sort to sort arr [] in increasing order. Examples : Input: arr[] = [4, 1, 3, 9, 7] Output: [1, 3, 4, 7, 9] Explanation: Maintain sorted (in bold) and unsorted subarrays. Select 1. …

  10. Selection Sort Algorithm (With Program in Python/Java/C/C++)

    Feb 5, 2026 · In selection sort, the smallest value among the unsorted elements of the array is selected in every pass and inserted into its appropriate position into the ...