Skip to content

Commit 892b7b7

Browse files
committed
feat: implement merge sort
1 parent 4440dde commit 892b7b7

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

merge_sort/index.js

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
const mergeSort = (array) => {
2+
if (array.length === 1) return array;
3+
4+
const midIndex = Math.ceil(array.length / 2);
5+
6+
const leftSorted = mergeSort(array.slice(0, midIndex));
7+
const rightSorted = mergeSort(array.slice(midIndex));
8+
9+
const sortedArray = [];
10+
11+
for (let i = 0; i < array.length; i++) {
12+
if (!rightSorted.length) {
13+
sortedArray.push(...leftSorted);
14+
break;
15+
}
16+
17+
if (!leftSorted.length) {
18+
sortedArray.push(...rightSorted);
19+
break;
20+
}
21+
22+
if (leftSorted[0] < rightSorted[0]) {
23+
sortedArray.push(leftSorted.shift());
24+
} else {
25+
sortedArray.push(rightSorted.shift());
26+
}
27+
}
28+
29+
return sortedArray;
30+
}
31+
32+
const data = [7, 2, 5, 4, 1, 6, 0, 3];
33+
34+
console.log(mergeSort(data));

0 commit comments

Comments
 (0)