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

Praktické cvičenie


public class Fraktalka extends Turtle {

        public void kochovaKrivka(double dlzka) {

                if (dlzka < 1) {
                        this.step(dlzka);
                        return;
                }
                this.kochovaKrivka(dlzka / 3);
                this.turn(-60);
                this.kochovaKrivka(dlzka / 3);
                this.turn(120);
                this.kochovaKrivka(dlzka / 3);
                this.turn(-60);
                this.kochovaKrivka(dlzka / 3);
        }

        public void hviezda(int uroven, double rozmer) {
                if(uroven==0) {
                        return;
                } else {
                        for (int i = 0; i < 6; i++) {
                                this.step(rozmer);
                                hviezda(uroven-1, rozmer/4);
                                this.penUp();
                                this.step(-rozmer);
                                this.penDown();
                                this.turn(60);
                        }
                }

        }

        public void stvorec(int uroven, double rozmer) {
                if(uroven==0) {
                        return;
                } else {
                        this.turn(-90);
                        for (int i = 0; i < 4; i++) {
                                this.step(rozmer);
                                stvorec(uroven-1, rozmer/4);
                                this.turn(90);
                        }
                        this.turn(90);
                }       
        }

        public void stvorecNekonecny(int uroven, double rozmer) {
                if(rozmer<1) {
                        return;
                } else {
                        this.turn(-90);
                        for (int i = 0; i < 4; i++) {
                                this.step(rozmer);
                                stvorec(uroven-1, rozmer/2);
                                this.turn(90);
                        }
                        this.turn(90);
                }       
        }
}

Teoretické cvičenie


public class Cvicenie1T {

        public static void main(String[] args) {
                System.out.println(sucet(3, 5));
                System.out.println(rastuce(new int[]{1,2,3,4,4,5,6}, 1));
        }

        public static int fibonacci(int n) {
                if (n == 0)
                        return 0;

                if (n == 1)
                        return 1;

                return fibonacci(n - 2) + fibonacci(n - 1);
        }

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

                return sucet(a + 1, b - 1);
        }

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

                return (p[odPolicka] <= p[odPolicka + 1]) && (rastuce(p, odPolicka + 1));
        }
}