search
HomeWeb Front-endJS TutorialMastering Sort Algorithm like a PRO

As we've been talking about different sorting algorithms, today we'll be learning about the selection sort algorithm. A sorting algorithm that allows for the possible minimum amount of swaps in a memory-constrained environment.

Table of Contents

  1. Introduction
  2. What is Selection Sort Algorithm?
  3. How does selection sort work?
    • Time Complexity
    • Space Complexity
  4. Implementation in JavaScript
  5. Solving LeetCode Problems
  6. Conclusion

Introduction

Selection sort is a simple yet effective sorting algorithm that works by repeatedly selecting the smallest (or largest) element from the unsorted portion of the list and moving it to the beginning (or end) of the sorted portion. This process is repeated until the entire list is sorted. In this article, we will delve into the details of the selection sort algorithm, its implementation in JavaScript, and its applications in solving real-world problems.

Mastering Sort Algorithm like a PRO

What is Selection Sort Algorithm?

Selection Sort algorithm is an in-place comparison sorting algorithm. It divides the input list into two parts:

  1. The sorted portion at the left end
  2. The unsorted portion at the right end

The algorithm repeatedly selects the smallest element from the unsorted portion and swaps it with the leftmost unsorted element, moving the boundary between the sorted and unsorted portions one element to the right.

How does selection sort work?

Let's walk through an example using the array [64, 25, 12, 22, 11]:

  1. Initial array: [64, 25, 12, 22, 11]
  • Sorted portion: []
  • Unsorted portion: [64, 25, 12, 22, 11]
  1. First pass:
  • Find minimum in unsorted portion: 11
  • Swap 11 with first unsorted element (64)
  • Result: [11, 25, 12, 22, 64]
  • Sorted portion: [11]
  • Unsorted portion: [25, 12, 22, 64]
  1. Second pass:
  • Find minimum in unsorted portion: 12
  • Swap 12 with first unsorted element (25)
  • Result: [11, 12, 25, 22, 64]
  • Sorted portion: [11, 12]
  • Unsorted portion: [25, 22, 64]
  1. Third pass:
  • Find minimum in unsorted portion: 22
  • Swap 22 with first unsorted element (25)
  • Result: [11, 12, 22, 25, 64]
  • Sorted portion: [11, 12, 22]
  • Unsorted portion: [25, 64]
  1. Fourth pass:
  • Find minimum in unsorted portion: 25
  • 25 is already in the correct position
  • Result: [11, 12, 22, 25, 64]
  • Sorted portion: [11, 12, 22, 25]
  • Unsorted portion: [64]
  1. Final pass:
    • Only one element left, it's automatically in the correct position
    • Final result: [11, 12, 22, 25, 64]

The array is now fully sorted.

Time Complexity

Selection Sort has a time complexity of O(n^2) in all cases (best, average, and worst), where n is the number of elements in the array. This is because:

  • The outer loop runs n-1 times
  • For each iteration of the outer loop, the inner loop runs n-i-1 times (where i is the current iteration of the outer loop)

This results in approximately (n^2)/2 comparisons and n swaps, which simplifies to O(n^2).

Due to this quadratic time complexity, Selection Sort is not efficient for large datasets. However, its simplicity and the fact that it makes the minimum possible number of swaps can make it useful in certain situations, especially when auxiliary memory is limited.

Space Complexity

Selection Sort has a space complexity of O(1) because it sorts the array in-place. It only requires a constant amount of additional memory space regardless of the input size. This makes it memory-efficient, which can be advantageous in memory-constrained environments.

Implementation in JavaScript

Here's a JavaScript implementation of Selection Sort Algorithm:

function selectionSort(arr) {
  const n = arr.length;

  for (let i = 0; i 


<p>Let's break down the code:</p><ol>
<li>We define a function selectionSort that takes an array as input.</li>
<li>We iterate through the array with the outer loop (i), which represents the boundary between the sorted and unsorted portions.</li>
<li>For each iteration, we assume the first unsorted element is the minimum and store its index.</li>
<li>We then use an inner loop (j) to find the actual minimum element in the unsorted portion.</li>
<li>If we find a smaller element, we update minIndex.</li>
<li>After finding the minimum, we swap it with the first unsorted element if necessary.</li>
<li>We repeat this process until the entire array is sorted.</li>
</ol>
<h2>
  
  
  Solving LeetCode Problems
</h2>

<p>Let'solve one leetcode algorithm problem using selection sort algorithm. Shall we?</p>
<h2>
  
  
  Problem: Sort An Array [Medium]
</h2>

<p><strong>Problem:</strong> Given an array of integers nums, sort the array in ascending order and return it. You must solve the problem without using any built-in functions in O(nlog(n)) time complexity and with the smallest space complexity possible.</p>

<p><strong>Approach:</strong>: To solve this problem, we can directly apply the Selection Sort algorithm. This involves iterating through the array, finding the smallest element in the unsorted portion, and swapping it with the first unsorted element. We repeat this process until the entire array is sorted.</p>

<p><strong>Solution:</strong><br>
</p>
<pre class="brush:php;toolbar:false">function selectionSort(arr) {
  const n = arr.length;

  for (let i = 0; i 


<p>This solution directly applies the Selection Sort algorithm we implemented earlier. While it correctly solves the problem, it's worth noting that this solution may exceed the time limit for large inputs on LeetCode due to the O(n^2) time complexity of Selection Sort. The image below shows that the solution is correct but not efficient.</p>

<p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172929732883611.jpg?x-oss-process=image/resize,p_40" class="lazy" alt="Mastering Sort Algorithm like a PRO"></p>
<h2>
  
  
  Conclusion
</h2>

<p>In conclusion, Selection Sort is a simple and intuitive sorting algorithm that serves as an excellent introduction to the world of sorting techniques. Its simplicity makes it easy to understand and implement, making it a valuable learning tool for beginners. However, due to its quadratic time complexity O(n^2), it is not efficient for large datasets. For larger datasets or performance-critical applications, more efficient algorithms like QuickSort, MergeSort, or built-in sorting functions are preferred.</p>

<hr>

<hr>
<h2>
  
  
  Stay Updated and Connected
</h2>

<p>To ensure you don't miss any part of this series and to connect with me for more in-depth<br>
discussions on Software Development (Web, Server, Mobile or Scraping / Automation), data<br>
structures and algorithms, and other exciting tech topics, follow me on:</p><div class="ltag__user ltag__user__id__878458" style="border-color:#2733b6;box-shadow: 3px 3px 0px #2733b6;">
    
      <div class="ltag__user__pic">
        <img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172929732962339.jpg?x-oss-process=image/resize,p_40" class="lazy" alt="Mastering Sort Algorithm like a PRO">
      </div>
    
  <div class="ltag__user__content">
    <h2>
The Great SoluTion ?<button name="button" type="button" data-info='{"className":"User","style":"full","id":878458,"name":"The Great SoluTion ?"}' class="crayons-btn follow-action-button whitespace-nowrap c-btn--secondary fs-base follow-user" aria-label="Follow user: The Great SoluTion ?" aria-pressed="false">Follow</button>
</h2>
    <div class="ltag__user__summary">
      Software Engineer | Technical Writer | Backend, Web & Mobile Developer ? | Passionate about crafting efficient and scalable software solutions. #letsconnect ?
    </div>
  </div>
</div>



  • GitHub
  • Linkedin
  • X (Twitter)

Stay tuned and happy coding ?‍??

The above is the detailed content of Mastering Sort Algorithm like a PRO. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 Mobile Cheat Sheets for Mobile Development10 Mobile Cheat Sheets for Mobile DevelopmentMar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source ViewerImprove Your jQuery Knowledge with the Source ViewerMar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 jQuery Fun and Games Plugins10 jQuery Fun and Games PluginsMar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header BackgroundjQuery Parallax Tutorial - Animated Header BackgroundMar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),