美文网首页
Java学习笔记 - 第015天

Java学习笔记 - 第015天

作者: 迷茫o | 来源:发表于2016-12-17 10:04 被阅读0次

    思维导图

    Java基础.jpg

    例子

    • 1.模拟do...while功能
            int i = 0;
            for (System.out.println('a'), System.out.println('b');
                    i < 3;
                    i++, System.out.println('c')) {
                if (i == 2) continue;
                System.out.println('d');
            }
            
            int a = 5, b = 10;
            boolean flag = true;
            // 模拟do...while功能
            while (flag || a > b) {
                flag = false;
            }
    
    • 方法 传入一个数组 和 一个元素 找到是否有 找到返回这个元素在数组哪个位置 没有 返回 -1
      冒泡排序
        public static void bubbleSort(int[] x) {
            boolean swapped = true;
            for (int i = 1; swapped && i < x.length; i++) {
                swapped = false;
                for (int j = 0; j < x.length - i; j++) {
                    if (x[j] > x[j + 1]) {
                        int temp = x[j + 1];
                        x[j + 1] = x[j];
                        x[j] = temp;
                        swapped = true;
                    }
                }
            }
        }
        
        public static int search(int[] x, int k) {
            for (int i = 0; i < x.length; i++) {
                if (x[i] == k) {
                    return k;
                }
            }
            return -1;
        }
        
        public static void main(String[] args) {
            int[] array = new int[40];
            
            for (int i = 0, len = array.length; i < len; i++) {
                array[i] = (int) (Math.random() * 100);
            }
            System.out.println(Arrays.toString(array));
    //      System.out.println(search(array, 25));
    //      System.out.println(search(array, 62));
            bubbleSort(array);
            System.out.println(Arrays.toString(array));
        }
    
    • 3.输入正整数 算每位数字相加和
            Scanner input = new Scanner(System.in);
            System.out.print("输入正整数: ");
            int n = input.nextInt();
            int sum = 0;
            while (n > 0) {
                /*int temp = n;
                temp %= 10;
                n /= 10;
                sum += temp;*/
                sum += n % 10;
                n /= 10;
            }
            System.out.println(sum);
            input.close();
    
    • 4.阶乘和求和
        public static int sum(int n) {
            if (n == 1) {
                return 1;
            }
            return n + sum(n - 1);
        }
        
        public static double f(int n) {
            if (n == 0 || n == 1) {
                return 1;
            }
            return n * f(n - 1);
        }
        
        public static void main(String[] args) {
            System.out.println(f(5));
            System.out.println(sum(5));
        }
    
    • 5. 有个小孩上楼梯 10级
      1次走可以 1级楼梯、2级楼梯、3级楼梯
      有多少走法
        public static int steps(int n) {
            if (n < 0) {
                return 0;
            }
            else if (n == 0) {
                return 1;
            }
            return steps(n - 1) + steps(n- 2) + steps(n - 3);
        }
        
        public static void main(String[] args) {
            for (int i = 1; i <= 10; i++) {
                System.out.println(steps(i));
            }
        }
    
    • 6.游戏里有三根金刚石柱子,在一根柱子上从下往上安大小顺序摞着64片黄金圆盘。玩家需要做的是把圆盘从下面开始按大小顺序重新摆放在另一根柱子上。并且规定,在小圆盘上不能放大圆盘,在三根柱子之间一次只能移动一个圆盘。
      n^3 - 1
      把n-1盘子搬到c
      把最大的盘子搬到b
      把n-1盘子搬到b
      输出步骤
        public static void hanoi(int n, char a, char b, char c) {
            if (n > 0) {
                hanoi(n - 1, a, c, b);
                System.out.println(a + "--->" + b);
                hanoi(n - 1, c, b, a);
            }
        }
        
        public static void main(String[] args) {
            hanoi(3, 'A', 'B', 'C');
        }
    

    作业

    • 1.输入正整数 分解质因子
      4 -> 2 2
      6 -> 2 3
      12 -> 2 2 3
      60 -> 2 2 3 5
      25 -> 5 5
            Scanner input = new Scanner(System.in);
            System.out.print("请输入一个正整数: ");
            int n = input.nextInt();
            for (int i = n / 2; i > 1; i--) {
                boolean isPrime = true;
                for (int j = 2; j <= i / 2; j++) {
                    if (i % j == 0) {
                        isPrime = false;
                        break;
                    }
                }
                if (isPrime) {
                    while (n % i == 0) {
                        n /= i;
                        System.out.println(i);
                    }
                }
            }
            input.close();
        }
    
    • 2.数字全排列

    • 3.随机生成 1010 的迷宫
      左上角入口 右下角出口
      求多少走法
      *

    相关文章

      网友评论

          本文标题:Java学习笔记 - 第015天

          本文链接:https://www.haomeiwen.com/subject/pbuomttx.html