Fusiona dos matrices y ordena la última.
En una entrevista me hicieron la siguiente pregunta. Me dan dos arreglos, ambos están ordenados.
PERO
La matriz 1 tendrá pocos -1 y la matriz 2 tendrá números totales como la cantidad total de -1 en la matriz 1.
Entonces, en el ejemplo a continuación, array1 tiene tres -1, por lo tanto, array2 tiene 3 números.
Digamos
var arrayOne = [3,6,-1,11,15,-1,23,34,-1,42];
var arrayTwo = [1,9,28];
Ambas matrices se ordenarán.
Ahora tengo que escribir un programa que fusionará arrayTwo en arrayOne reemplazando -1's, y arrayOne debería estar en orden.
Entonces la salida será
arrayOne = [ 1,3, 6, 9, 11, 15, 23, 28 ,34, 42 ]
La clasificación debe hacerse sin el uso de ninguna API de clasificación.
He escrito un siguiente código
function puzzle01() {
var arrayOne = [3, 6, -1, 11, 15, -1, 23, 34, -1, 42];
var arrayTwo = [1, 9, 28];
var array1Counter = 0,
isMerged = false;
console.log(" array-1 ", arrayOne);
console.log(" array-2 ", arrayTwo);
for (var array2Counter = 0; array2Counter < arrayTwo.length; array2Counter++) {
isMerged = false;
while (isMerged === false && array1Counter < arrayOne.length) {
if (arrayOne[array1Counter] === -1) {
arrayOne[array1Counter] = arrayTwo[array2Counter];
isMerged = true;
}
array1Counter++;
}
} //for
console.log(" array-1 + array-2 ", arrayOne);
bubbleSort(arrayOne);
console.log(" Sorted array ", arrayOne);
} //puzzle01
puzzle01();
// implementation of bubble sort for sorting the
// merged array
function bubbleSort(arrayOne) {
var nextPointer = 0,
temp = 0,
hasSwapped = false;
do {
hasSwapped = false;
for (var x = 0; x < arrayOne.length; x++) {
nextPointer = x + 1;
if (nextPointer < arrayOne.length && arrayOne[x] > arrayOne[nextPointer]) {
temp = arrayOne[x];
arrayOne[x] = arrayOne[nextPointer];
arrayOne[nextPointer] = temp;
hasSwapped = true;
}
} //for
} while (hasSwapped === true);
} // bubbleSort
La salida del código anterior es
array-1 [ 3, 6, -1, 11, 15, -1, 23, 34, -1, 42 ]
array-2 [ 1, 9, 28 ]
array-1 + array-2 [ 3, 6, 1, 11, 15, 9, 23, 34, 28, 42 ]
Sorted array [ 1, 3, 6, 9, 11, 15, 23, 28, 34, 42 ]
Del código anterior que puede ver, primero fusioné las dos matrices y luego clasifiqué la última.
Solo quería saber, ¿hay una mejor solución?
¿Hay alguna falla en mi solución?
Por favor, hágamelo saber, será útil.
Después de leer todos sus comentarios y respuestas muy útiles, descubrí que podía encontrar una solución más rápida.
Pongamos un ejemplo
var arrayOne = [3,6,-1,11,15,-1,32,34,-1,42,-1];
var arrayTwo = [1,10,17,56],
Paso 1: iteraré a través de arrayTwo. Tome el siguiente elemento (es decir, '1') y compárelo con el siguiente elemento de arrayOne (es decir, '3') y compárelo.
Paso 2a: si el elemento de la matriz1 es mayor que el elemento de la matriz2 que los elementos de la matriz de intercambio. Ahora ve al siguiente elemento de array1.
O
Paso 2b: Si el elemento de la matriz1 es igual a -1 que los elementos de la matriz de intercambio. Ahora ve al siguiente elemento de array2.
Paso 3: Ve al paso 1.
Entonces
en el ejemplo anterior
primera iteración, matriz1 = [1,6, -1,11, ...] matriz2 = [3,10,17,56]
segunda iteración, matriz1 = [1,3, -1,11, ..] matriz2 = [6,10,17,56]
tercera iteración, matriz1 = [1,3,6,11 ..] matriz2 = [-1,10,17,56]
cuarta iteración array1 = [1,3,6,10, ..] array2 = [-1,11,17,56]
y así.
al final obtendré la salida
array1 = [ 1, 3, 6, 10, 11, 15, 17, 32, 34, 42, 56 ]
array2 = [-1,-1,-1]
Por favor encuentre el código a continuación,
function puzzle02(arrayOne,arrayTwo){
var array1Counter = 0,
array2Counter = 0,
hasMinusOneOccurred = false;
console.log(" array-1 ",arrayOne);
console.log(" array-2 ",arrayTwo);
while(array2Counter < arrayTwo.length){ // iterate through array2
do{
if(arrayOne[array1Counter] === -1){ // if -1 occurred in array1
hasMinusOneOccurred = true;
// swaping numbers at current position of array1
// with current position of array2
swap(arrayOne,arrayTwo,array1Counter,array2Counter);
// recheck if the current value is greater than other values
// of array1
if(recheckAndSort(arrayOne,array1Counter) === true){
array1Counter = -1;// recheck array1 from start
}else{
// recheck the current array1 counter, for doing so go 1 count back
// so that even if the counter is incremented it points to current
// number itself
array1Counter--;
}
}else if(arrayOne[array1Counter] > arrayTwo[array2Counter]){
swap(arrayOne,arrayTwo,array1Counter,array2Counter);
}else{
array1Counter++;
continue;
}
array1Counter++;
}while(hasMinusOneOccurred === false); // end of do-while
array2Counter++;
hasMinusOneOccurred = false;
}//end of while
console.log(" Sorted array ",arrayOne);
function swap(arr1,arr2,arr1Index,arr2Index){
var temp = arr2[arr2Index];
arr2[arr2Index] = arr1[arr1Index];
arr1[arr1Index] = temp;
}// end of swap
// this method is call if -1 occures in array1
function recheckAndSort(arrayOne,array1Counter){
var isGreaterVal = true,
prevCounter = 0,
nextCounter = 0,
temp = 0,
recheckFromStart = false;
if(array1Counter === 0){ // if -1 occurred at first position of array1.
// flag to check if -1 occurrec at first position
// if yes, iterate array1 from start
recheckFromStart = true;
// iterate forward to check wether any numbers are less than current position,
// if yes than move forward
for(var j = 0; isGreaterVal; j++){
nextCounter = j + 1;
if(arrayOne[nextCounter] === -1){
// swaping numbers of array1 between next to current
swap(arrayOne,arrayOne,nextCounter,j);
isGreaterVal = true;
}else if(arrayOne[nextCounter] < arrayOne[j]){
// swaping numbers of array1 between next to current
swap(arrayOne,arrayOne,nextCounter,j);
isGreaterVal = true;
}else{
isGreaterVal = false;
}
}//end of for
}else{// if -1 occurred in the middle position of array1 and is been swaped then
// iterate backwards to check if any number less then current position exists,
// if yes than shift backwards.
for(var i = array1Counter; isGreaterVal; i--){
prevCounter = i - 1;
if(arrayOne[prevCounter] > arrayOne[i]){
// swaping numbers of array1 between previous to current
swap(arrayOne,arrayOne,prevCounter,i);
isGreaterVal = true;
}else{
isGreaterVal = false;
}
}// end of for
}
return recheckFromStart;
}// end of recheckAndSort
} // end of puzzle02
Después de llamar a la función anterior
puzzle02([3,6,-1,11,15,-1,32,34,-1,42,-1],[1,10,17,56]);
La salida del código anterior es,
array-1 [ 3, 6, -1, 11, 15, -1, 32, 34, -1, 42, -1 ]
array-2 [ 1, 10, 17, 56 ]
Sorted array [ 1, 3, 6, 10, 11, 15, 17, 32, 34, 42, 56 ]
Gracias.