Riešenia (skupina A, 1. týždeň)

Praktické cvičenie

import sk.upjs.jpaz2.Turtle;

public class Fraktalka extends Turtle {

        public void vlocka(int u, double d) {
                if (u == 0)
                        return;

                for (int i = 0; i < 6; i++) {
                        step(d);
                        vlocka(u - 1, d / 3);
                        step(-d);
                        turn(60);
                }
        }

        public void stvorec(int u, double d) {
                if (u == 0)
                        return;

                for (int i=0; i<4; i++) {
                        step(d);
                        turn(-90);
                        stvorec(u-1, d/3);
                        turn(90);
                        turn(90);
                }
        }

        public void stvorec(double d) {
                if (d < 1)
                        return;

                for (int i=0; i<4; i++) {
                        step(d);
                        turn(-90);
                        stvorec(d/3);
                        turn(90);
                        turn(90);
                }
        }
}

public class Cvicenie {

        public static boolean jeVacsie(int a, int b) {
                if (a == 0) {
                        return false;
                }
                if (b == 0) {
                        return true;
                }
                return jeVacsie(a - 1, b - 1);

        }

        public static int sucet(int a, int b) {
                if (a == 0)
                        return b;
                a--;
                b++;

                return sucet(a, b);
        }

        public static int pocetVyskytov(char z, String s) {
                if (s.length() == 0) {
                        return 0;
                }

                if (s.charAt(0) == z) {
                        return 1 + pocetVyskytov(z, s.substring(1));
                } else {
                        return pocetVyskytov(z, s.substring(1));
                }
        }

        public static boolean usporiadane(int[] p, int odIndexu) {
                if (odIndexu >= p.length - 1) {
                        return true;
                }

                return (p[odIndexu] <= p[odIndexu + 1])
                                && (usporiadane(p, odIndexu + 1));
        }

        public static void main(String[] args) {
                // System.out.println(Cvicenie.jeVacsie(10, 1));
                System.out.println(Cvicenie.sucet(0, 3));
                int[] p = {4, 6, 18, 9, 10};
                System.out.println(Cvicenie.usporiadane(p, 0));
        }
}