Counting Sort Algorithm In Javascript | letsbug

     Hey in this article we implementing counting sort algorithm. If you are new to Data Structures and Algorithms you might have not heard about it. Because this is not taught in the colleges like they teach other algorithms like the bubble sort.

    If you want to see implement more sorting algorithms click here

    So we are going to implement this algorithm in javascript. And if you want to go deep into counting sort and how it works from the basic. You can find many tutorials on the web available. But in this article we are just focused on implementing it javascript. so

Counting Sort In Javascript.

code:

    //counting sort algorithm
    function countingSort(arr: number[]):number[] {
        let max = Math.max(...arr);
        let output: number[] = [];
        let count: number[] = [];
        for (let i = 0; i <= max; i++) {
            count.push(0);
        }
        for (let i = 0; i < arr.length; i++) {
            if(arr[i] > max) continue
            count[arr[i]]++;
        }
        for (let i = 1; i <= max; i++) {
            count[i] += count[i - 1];
        }
        for (let i = arr.length - 1; i >= 0; i--) {
            if(arr[i] > max) continue
            output[count[arr[i]] - 1] = arr[i];
            count[arr[i]]--;
        }
        return output;
    }
    let arr1 = [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]

    console.log(`Before sorting: ${arr1}
    After sorting: ${countingSort(arr1)}`);

output:

$ node countingSort.js

Before sorting: 10,9,8,7,6,5,4,3,2,1

After sorting: 1,2,3,4,5,6,7,8,9,10

counting sort in javascript | letsbug
output


Comments

Categories

Big Data Analytics Binary Search Binary Search Tree Binary To Decimal binary tree Breadth First Search Bubble sort C Programming c++ Chemical Reaction and equation class 10 class 10th Class 9 Climate Complex Numbers computer network counting sort CSS Cyber Offenses Cyber Security Cyberstalking Data Science Data Structures Decimal To Binary Development diamond pattern Digital Marketing dust of snow Economics Economics Lesson 4 Email Validation English fire and ice Food Security in India Footprints Without feet Forest And Wildlife Resources game Geography Geography lesson 6 glassmorphism Glossary Graph HackerRank Solution hindi HTML image previewer India-Size And Location Insertion Sort Internet Network Status Interview Questions Introduction to cyber crime and cyber security IT javascript tricks json to CSV converter lesson 2 lesson 1 lesson 2 Lesson 3 Lesson 6 lesson 7 Life lines of National Economy life processes Linear Search Linked List lowest common ancestor Machine Learning MCQs median in array Merge sort min and max of two numbers Moment Money and Credit My Childhood Natural Vegetation and Wildlife NCERT Network connectivity devices Network Models Network Security No Men Are foreign Node.js operator overloading P5.js PHP Physical features of India Population Prime Numbers python Quick sort R language Rain on the roof Regular Expression Resources and development reversing array saakhi science Searching Algorithm Selection sort Social Media Marketing social science Software Engineering Software Testing Sorting Algorithm Stacks staircase pattern System Concepts Text Recognition The last Leaf time converter Time Passed From A Date Todo List App Tree Trending Technologies Understanding Economic Development username and password video player Visualization water resources Wired And Wireless LAN साखी
Show more

Popular Posts

Big Data MCQs(multiple choice questions) with answers - letsbug

Digital Marketing MCQ(Multiple Choice Questions) with Answers | part 1 | letsbug

Software Engineering MCQs questions with answers - letsbug