v1
10/19/2020 by hkotsubo -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
function bubbleSort(array) { // sempre começando do zero
    for (let i = 0; i < array.length; i++) {
        for (let j = 0; j < array.length; j++) {
            if (array[i] > array[j]) {
                let aux = array[i];
                array[i] = array[j];
                array[j] = aux;
            }
        }
    }
}

function bubbleSort2(array) { // "otimizado" para não começar sempre do zero
    for (let i = 0; i < array.length; i++) {
        for (let j = i + 1; j < array.length; j++) {
            if (array[i] > array[j]) {
                let aux = array[i];
                array[i] = array[j];
                array[j] = aux;
            }
        }
    }
}
let numeros = [];
for (let i = 0; i < 10000; i++) { // cria um array com 10 mil números quaisquer
	numeros.push(Math.floor(Math.random() * (1000)));
}
delete caserun single casemove downdrag and drop case


ready



bubbleSort(numeros);
delete caserun single casemove updrag and drop case


ready



bubbleSort2(numeros);
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN