Skip to content

Instantly share code, notes, and snippets.

View lukeo357's full-sized avatar

Antonio lukeo357

  • ApproachMe
View GitHub Profile
@lukeo357
lukeo357 / radixSort.js
Last active August 14, 2022 18:01
LSD Radix sort with JavaScript
/* A Queue based datastructure for implementing our radix algorithm.
Sorting will modify the existing input data and return the sorted data */
function Queue(){
this.dataStore = [];
this.enqueue = enqueue;
this.dequeue = dequeue;
this.isEmpty = isEmpty;
};
function enqueue(element){
this.dataStore.push(element);
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="JSV">
<meta charset="utf-8">
<title>JSV</title>
</head>
<body>
<script id="jsbin-javascript">