0
0
DSA Javascriptprogramming~20 mins

Comparison Based vs Non Comparison Based Sorting in DSA Javascript - Compare & Choose

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Sorting Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Predict Output
intermediate
2:00remaining
Output of Comparison Based Sorting Algorithm
What is the output of the following JavaScript code that uses a comparison based sorting method?
DSA Javascript
const arr = [5, 3, 8, 1, 2];
arr.sort((a, b) => a - b);
console.log(arr.join(' -> ') + ' -> null');
A1 -> 3 -> 2 -> 5 -> 8 -> null
B5 -> 3 -> 8 -> 1 -> 2 -> null
C8 -> 5 -> 3 -> 2 -> 1 -> null
D1 -> 2 -> 3 -> 5 -> 8 -> null
Attempts:
2 left
💡 Hint
Remember that the sort method with (a, b) => a - b sorts numbers in ascending order.
Predict Output
intermediate
2:00remaining
Output of Non Comparison Based Sorting Algorithm
What is the output of the following JavaScript code that uses a non comparison based sorting method (counting sort) on a small array?
DSA Javascript
function countingSort(arr) {
  const max = Math.max(...arr);
  const count = new Array(max + 1).fill(0);
  for (const num of arr) count[num]++;
  const sorted = [];
  for (let i = 0; i <= max; i++) {
    while (count[i] > 0) {
      sorted.push(i);
      count[i]--;
    }
  }
  return sorted;
}
const arr = [4, 2, 2, 8, 3, 3, 1];
const sortedArr = countingSort(arr);
console.log(sortedArr.join(' -> ') + ' -> null');
A1 -> 2 -> 2 -> 3 -> 3 -> 4 -> 8 -> null
B8 -> 4 -> 3 -> 3 -> 2 -> 2 -> 1 -> null
C1 -> 3 -> 2 -> 4 -> 8 -> 2 -> 3 -> null
D2 -> 2 -> 3 -> 3 -> 4 -> 8 -> 1 -> null
Attempts:
2 left
💡 Hint
Counting sort counts occurrences and outputs sorted values in order.
🧠 Conceptual
advanced
2:00remaining
Time Complexity Difference
Which statement correctly describes the time complexity difference between comparison based and non comparison based sorting algorithms?
ANon comparison based sorting algorithms can achieve linear time O(n) under certain conditions, while comparison based sorting algorithms cannot do better than O(n log n).
BBoth comparison based and non comparison based sorting algorithms always run in O(n log n) time regardless of input.
CComparison based sorting algorithms have a best time complexity of O(n), while non comparison based sorting algorithms always run in O(n log n).
DComparison based sorting algorithms are always faster than non comparison based sorting algorithms.
Attempts:
2 left
💡 Hint
Think about the theoretical lower bound for comparison based sorting.
Predict Output
advanced
2:00remaining
Output of Non Comparison Based Sorting Algorithm (Radix Sort)
What is the output of the following JavaScript code that uses a non comparison based sorting method (radix sort)?
DSA Javascript
function radixSort(arr) {
  const max = Math.max(...arr);
  let exp = 1;
  while (Math.floor(max / exp) > 0) {
    const output = new Array(arr.length).fill(0);
    const count = new Array(10).fill(0);
    for (let i = 0; i < arr.length; i++) {
      const index = Math.floor(arr[i] / exp) % 10;
      count[index]++;
    }
    for (let i = 1; i < 10; i++) {
      count[i] += count[i - 1];
    }
    for (let i = arr.length - 1; i >= 0; i--) {
      const index = Math.floor(arr[i] / exp) % 10;
      output[count[index] - 1] = arr[i];
      count[index]--;
    }
    arr = output;
    exp *= 10;
  }
  return arr;
}
const arr = [170, 45, 75, 90, 802, 24, 2, 66];
console.log(radixSort(arr).join(' -> ') + ' -> null');
ATypeError: Assignment to constant variable.
BOutputs sorted array correctly: 2 -> 24 -> 45 -> 66 -> 75 -> 90 -> 170 -> 802 -> null
CReferenceError: arr is not defined.
DRangeError: Maximum call stack size exceeded.
Attempts:
2 left
💡 Hint
This is a correct implementation of LSD radix sort using counting sort per digit.
🚀 Application
expert
2:00remaining
Choosing Sorting Algorithm for Large Dataset with Small Range
You have a large dataset of 10 million integers, but all values are between 0 and 1000. Which sorting algorithm is the best choice for fastest sorting?
AMergeSort (comparison based) because it guarantees O(n log n) time and is stable.
BQuickSort (comparison based) because it has average O(n log n) time and works well on large datasets.
CCounting Sort (non comparison based) because it can sort in O(n) time when the range is small.
DBubble Sort (comparison based) because it is simple and easy to implement.
Attempts:
2 left
💡 Hint
Consider the input range and how it affects non comparison based sorting.