forked from kelvins/algorithms-and-data-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MergeSort.js
52 lines (40 loc) · 1.63 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
function mergeSort(vetorDesordenado, inicio, fim){
let quantidadeDePosicoes = fim - inicio;
if(quantidadeDePosicoes > 1){
let miolo = (inicio + fim) / 2;
mergeSort(vetorDesordenado, inicio, miolo);
mergeSort(vetorDesordenado, miolo, fim);
intercalaVetorOrdenadoEmDuasPartes(vetorDesordenado, inicio, miolo, fim);
}
return vetorDesordenado;
}
function intercalaVetorOrdenadoEmDuasPartes(vetorOrdenadoEmDuasPartes, inicio, miolo, termino){
let vetorIntercalado = [];
let posicaoVetorIntercalado = 0;
let posicaoPrimeiroVetor = inicio;
let posicaoSegundoVetor = miolo;
while(posicaoPrimeiroVetor < miolo && posicaoSegundoVetor < termino){
let valorPrimeiroVetor = vetorOrdenadoEmDuasPartes[posicaoPrimeiroVetor];
let valorSegundoVetor = vetorOrdenadoEmDuasPartes[posicaoSegundoVetor];
if(valorPrimeiroVetor < valorSegundoVetor){
vetorIntercalado[posicaoVetorIntercalado] = valorPrimeiroVetor;
posicaoPrimeiroVetor++;
}else{
vetorIntercalado[posicaoVetorIntercalado] = valorSegundoVetor;
posicaoSegundoVetor++;
}
posicaoVetorIntercalado++;
}
while(posicaoPrimeiroVetor < miolo){
vetorIntercalado[posicaoVetorIntercalado++] = vetorOrdenadoEmDuasPartes[posicaoPrimeiroVetor++];
}
while(posicaoSegundoVetor < termino){
vetorIntercalado[posicaoVetorIntercalado++] = vetorOrdenadoEmDuasPartes[posicaoSegundoVetor++];
}
for (var i = 0; i < posicaoVetorIntercalado; i++) {
vetorOrdenadoEmDuasPartes[inicio + i] = vetorIntercalado[i];
}
}
var vetorDesordenado = [54,42,11,33,24,99,77,80];
let vetorOrdenadoViaMergeSort = mergeSort(vetorDesordenado, 0, vetorDesordenado.length);
console.log(vetorOrdenadoViaMergeSort);