-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmergeSort.js
56 lines (49 loc) · 1.5 KB
/
mergeSort.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const mergeSort = (arr) => {
if (arr.length < 2) {
console.log("now its size 1");
return arr;
}
const length = arr.length;
const middle = Math.floor(length / 2);
const left = arr.slice(0, middle);
const right = arr.slice(middle);
console.log("divided into two");
// const sortedLeft = mergeSort(left);
// const sortedRight = mergeSort(right);
// return merge(sortedLeft, sortedRight);
console.log(left);
console.log(right);
return merge(mergeSort(left), mergeSort(right));
};
const merge = (left, right) => {
console.log("entering the merge");
const resultArray = [];
while (left.length && right.length) {
if (left[0] <= right[0]) {
console.log("entering left less then right")
console.log(resultArray)
resultArray.push(left.shift());
console.log("entering left less then right DONE")
console.log(resultArray)
} else {
console.log("entering left bigger then right")
console.log(resultArray)
resultArray.push(right.shift());
console.log("entering left bigger then right DONE")
console.log(resultArray);
}
}
/* while (left.length) {
resultArray.push(left.shift());
}
while (right.length) {
resultArray.push(right.shift());
} */
//return resultArray;
//return resultArray.concat(left,right);
console.log("Concatanating happening")
console.log(resultArray + left + right);
return [...resultArray, ...left, ...right];
};
const arr = [4, 9, 5, 8, 6, 1, 7, 2, 0, 3];
console.log(mergeSort(arr));