Skip to content

Commit beb0770

Browse files
committed
update 1.9
implemented mergesort, no visible bugs
1 parent b9af264 commit beb0770

File tree

3 files changed

+89
-4
lines changed

3 files changed

+89
-4
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h1>Sorting Visualizer</h1>
3131
<p id="boxcount">Items: <span id="value"></span></p>
3232

3333
<button onclick="BubbleSort()">BubbleSort</button>
34-
<button onclick="MergeSort()">MergeSort</button>
34+
<button onclick="doMergeSort()">MergeSort</button>
3535
<button onclick="doQuickSort()">QuickSort</button>
3636

3737
<script src="script.js" async defer></script>

script.js

+87-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ for (i = 0; i < 5; i++) {
2323
slider.oninput = function() {
2424
slidevalue.innerHTML = this.value;
2525
numBoxes = this.value;
26-
var obj = document.getElementsByClassName("box");
26+
var obj = document.getElementsByClassName("box");
2727

2828
while(obj[0]) {
2929
obj[0].parentNode.removeChild(obj[0]);
@@ -69,9 +69,9 @@ function removePx (str) {
6969

7070

7171
async function Swap(x, y) {
72-
if (sortSelection = 0) {
72+
if (sortSelection == 0) {
7373
await sleep((-22)*(myCollection.length) + 1120);
74-
} else if (sortSelection = 1) {
74+
} else if (sortSelection == 1) {
7575
await sleep(25);
7676
}
7777
var temp = myCollection[x].style.height;
@@ -159,8 +159,92 @@ function doQuickSort() {
159159
QuickSort(0, myCollection.length - 1);
160160
}
161161

162+
162163
// MergeSort
163164

165+
async function merge(l, m, r) {
166+
await sleep(200);
167+
// Find sizes of two subarrays to be merged
168+
var n1 = m - l + 1;
169+
var n2 = r - m;
170+
171+
172+
173+
/* Create temp arrays */
174+
let leftArray = new Array(n1);
175+
let rightArray = new Array(n2);
176+
177+
/*Copy data to temp arrays*/
178+
for (i = 0; i < n1; ++i) {
179+
leftArray[i] = removePx(myCollection[l + i].style.height);
180+
}
181+
182+
for (j = 0; j < n2; ++j) {
183+
rightArray[j] = removePx(myCollection[m + 1 + j].style.height);
184+
185+
}
186+
187+
/* Merge the temp arrays */
188+
189+
// Initial indexes of first and second subarrays
190+
var i = 0
191+
var j = 0;
192+
193+
// Initial index of merged subarry array
194+
var k = l;
195+
196+
while ((i < n1) && (j < n2)) {
197+
if (leftArray[i] >= rightArray[j]) {
198+
myCollection[k].style.height = addPx(leftArray[i]);
199+
i++;
200+
201+
} else {
202+
203+
myCollection[k].style.height = addPx(rightArray[j]);
204+
205+
j++;
206+
}
207+
208+
k++;
209+
}
210+
211+
/* Copy remaining elements of L[] if any */
212+
while (i < n1) {
213+
myCollection[k].style.height = addPx(leftArray[i]);
214+
i++;
215+
k++;
216+
}
217+
218+
/* Copy remaining elements of R[] if any */
219+
while (j < n2) {
220+
myCollection[k].style.height = addPx(rightArray[j]);
221+
j++;
222+
k++;
223+
224+
}
225+
226+
227+
}
228+
229+
async function MergeSort(l, r) {
230+
await sleep(50);
231+
if (l < r) {
232+
myCollection[l].style.background = "red";
233+
var m = Math.floor((l + r) / 2);
234+
await MergeSort(l, m);
235+
await MergeSort(m + 1, r);
236+
myCollection[r].style.background = "green";
237+
await merge(l, m, r);
238+
myCollection[l].style.background = "cyan";
239+
myCollection[r].style.background = "cyan";
240+
}
241+
}
242+
243+
function doMergeSort() {
244+
sortSelection = 1;
245+
MergeSort(0, myCollection.length - 1);
246+
}
247+
164248

165249

166250

style.css

+1
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,6 @@ button {
8989
left: 5%;
9090
bottom: 20px;
9191
margin-left: 2%;
92+
outline: none;
9293
}
9394

0 commit comments

Comments
 (0)