import sk.upjs.paz.calltree.CallTree;
public class TestFibonacciho {
private static int pocitadlo = 0;
static int maximum = 0;
public static int fibonacci(int n) {
CallTree.markCall(n);
pocitadlo++;
if (n <= 1) {
maximum = Math.max(maximum, pocitadlo);
// System.out.println(pocitadlo);
}
if (n == 0) {
pocitadlo--;
return CallTree.markReturn(0);
}
if (n == 1) {
pocitadlo--;
return CallTree.markReturn(1);
}
int vysledok = fibonacci(n - 2) + fibonacci(n - 1);
pocitadlo--;
return CallTree.markReturn(vysledok);
}
public static int sucet(int[] p, int odIdx, int poIdx) {
CallTree.markCall(odIdx,poIdx);
if (odIdx > poIdx)
return CallTree.markReturn(0);
if (odIdx == poIdx)
return CallTree.markReturn(p[odIdx]);
return CallTree.markReturn(p[odIdx] + sucet(p, odIdx + 1, poIdx));
}
public static int sucet2(int[] p, int odIdx, int poIdx) {
CallTree.markCall(poIdx-odIdx+1);
if (odIdx > poIdx)
return CallTree.markReturn(0);
if (odIdx == poIdx)
return CallTree.markReturn(p[odIdx]);
if (odIdx < poIdx) {
int stred = (odIdx + poIdx) / 2;
return CallTree.markReturn(sucet2(p, odIdx, stred) + sucet2(p, stred + 1, poIdx));
}
return 0;
}
public static void main(String[] args) {
int[] pole = new int[]{5,6,7,1,2,4,9,2,7};
System.out.println(sucet(pole, 0, 8));
System.out.println(sucet2(pole, 0, 8));
}
}