How to use JavaScript to implement sorting algorithms

How to use JavaScript to implement sorting algorithms

Bubble Sort

Bubble sort is to repeatedly compare the sizes of two adjacent numbers starting from the right side of the sequence, and then swap the positions of the two numbers based on the results.

JavaScript code implementation:

Code introduction: declare an array variable, assign values ​​to the array variable through while, stop inputting when "#" is input, then traverse two adjacent numbers, arrange the two adjacent numbers in ascending order, and traverse n-1 times to achieve sorting;

 var a = Array();
    flag=true;
    var i = 0;
    var j = 0;
    var temp = 0;
    while(flag){
        var b = prompt("Please enter the i-th number:");
        if(b=="#"){
          flag=false;
        }else{
            a[i] = b;
        }
        i++;
    }
   
    s = a.length;
    for(j=0;j<s;j++){
        console.log(a[j]); 
    }
    for(j=1;j<s;j++){
       for(i=0;i<sj;i++){
           if(a[i]>a[i+1]){
                temp=a[i];
                a[i]=a[i+1];
                a[i+1]=temp;
           }
       }
    }
    for(j=0;j<s;j++){
        console.log("Ascending order:",a[j]); 
    }

Enter 3, 4, 2, 8, 6. The output is as follows:

Selection Sort

Selection sorting is to repeatedly find the minimum value from the data to be sorted and exchange it with the leftmost number in the sequence.

JavaScript code implementation:

    var a = Array();
    flag=true;
    var i = 0;
    var j = 0;
    var temp = 0;
    while(flag){
        var b = prompt("Please enter the i-th number:");
        if(b=="#"){
          flag=false;
        }else{
            a[i] = b;
        }
        i++;
    }
    s = a.length;
    for(j=0;j<s;j++){
        console.log("array:",a[j]); 
    }
    for(i=0;i<s;i++){
        for(j=0;j<s;j++){
            if(a[i]>a[j]){
                temp = a[j];
                a[j] = a[i];
                a[i] = temp;
            }
        }
    }
    for(j=s-1;j>=0;j--){
        console.log("Select sort:",a[j]); 
    }

Insertion Sort

Insertion sort algorithm: By building a storage of ordered array elements, for unsorted array elements, traverse from the last element to the first element in the sorted array, find the corresponding position and insert it.

js code implementation:

var flag = true;
    var a = new Array();
    var i=0;
    while(flag){
        
        var s = prompt('Please enter a number:');
        if(s=='#'){
            flag=false;
        }else{
            a[i] = s;
        }
        i++;
    }
    console.log(a);
    for(var i=1;i<a.length;i++){
    for(var j = i;j>0;j--){
        if(a[j-1]>a[j]){
            var temp = a[j-1];
            a[j-1] = a[j];
            a[j] = temp;
        }
    }
}
for(var i=0;i<a.length;i++){
console.log(a[i]);
}

Enter 5, 3, 7, 4, 8, 1, 6. The output is as follows:

Summarize

This is the end of this article on how to use JavaScript to implement sorting algorithms. For more relevant js implementation of sorting algorithms, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Using JS to implement binary tree traversal algorithm example code
  • JavaScript programming through Matlab centroid algorithm positioning learning
  • Binary Search Tree Algorithm Tutorial for JavaScript Beginners
  • Summary of seven sorting algorithms implemented in JavaScript (recommended!)
  • A brief discussion on an efficient algorithm for constructing tree structures in JavaScript
  • How to Learn Algorithmic Complexity with JavaScript
  • js implements the algorithm for specifying the order and amount of red envelopes
  • How to use javascript to do simple algorithms

<<:  Design theory: On the issues of scheme, resources and communication

>>:  HTML uncommon tags optgroup, sub, sup and bdo example code

Recommend

Tutorial on installing MySQL database and using Navicat for MySQL

MySQL is a relational database management system ...

Nginx load balancing algorithm and failover analysis

Overview Nginx load balancing provides upstream s...

Vue components dynamic components detailed explanation

Table of contents Summarize Summarize When the ar...

Detailed explanation of display modes in CSS tags

Label display mode (important) div and span tags ...

Detailed explanation on how to modify the default port of nginx

First find out where the configuration file is wh...

Analysis of MySQL query sorting and query aggregation function usage

This article uses examples to illustrate the use ...

Analysis of the process of deploying pure HTML files in Tomcat and WebLogic

1. First, the pure HTML file must have an entry i...

Install JDK1.8 in Linux environment

Table of contents 1. Installation Environment 2. ...

MySql 8.0.11-Winxp64 (free installation version) configuration tutorial

1. Unzip the zip package to the installation dire...

PHP related paths and modification methods in Ubuntu environment

PHP related paths in Ubuntu environment PHP path ...

Detailed deployment of Alibaba Cloud Server (graphic tutorial)

I have recently learned web development front-end...

HTML+css to create a simple progress bar

1. HTML code Copy code The code is as follows: Ex...

Mobile terminal adaptation makes px automatically converted to rem

Install postcss-pxtorem first: npm install postcs...

WeChat applet wxs date and time processing implementation example

Table of contents 1. Timestamp to date 2. Convert...