import java.util.Arrays;
public class Spustac {
public static int hodnotaVStrome(int[] pole, String cesta) {
int idxVStrome = 0;
for (int i = 0; i < cesta.length(); i++) {
if (cesta.charAt(i) == 'L') {
idxVStrome = idxVStrome * 2 + 1;
} else {
idxVStrome = idxVStrome * 2 + 2;
}
}
return pole[idxVStrome];
}
public static boolean jeHaldou(int[] pole) {
for (int i = 1; i < pole.length; i++) {
int idxRodica = (i - 1) / 2;
if (pole[idxRodica] < pole[i])
return false;
}
return true;
}
/**
* @param args
*/
public static void main(String[] args) {
// int[] pole = new int[10];
// for (int i=0; i<pole.length; i++)
// pole[i] = (int)(Math.random() * 100);
int[] pole = { 1, 4, 2, 3, 7, 6, 10, 9, 8, 5 };
System.out.println(Arrays.toString(pole));
TriediaciAlgoritmus algoritmus = new QuickSort();
algoritmus.utried(pole);
System.out.println("Porovnania:" + algoritmus.getPocetPorovnani());
System.out.println("Vymeny:" + algoritmus.getPocetVymen());
System.out.println(Arrays.toString(pole));
int[] strom = { 8, 3, 2, 10, 5, 1, 6, 12, 1, 3 };
}
}