zoukankan      html  css  js  c++  java
  • 杨辉三角

    杨辉三角

    1. 递归方法

    package sort;

    /**
     * @author WangXiaoeZhe
     * @Date: Created in 2019/11/22 13:04
     * @description:
     */

    public class YangHuiF {
        public static int fun(int i, int j) {
            if (j == 1 || i == j) {
                return 1;
            } else {
                return fun(i - 1, j) + fun(i - 1, j - 1);
            }

        }

        public static void main(String[] args) {
            /**
             * 打印的行数
             */

            int length = 6;
            for (int i = 1; i <= length; i++) {

                /**
                 * 打印空格
                 */


                for (int j = 1; j <= length - i; j++) {
                    System.out.print("  ");
                }
                for (int j = 1; j <= i; j++) {
                    System.out.printf("%4d"fun(i, j));
                }
                System.out.println();
            }
        }
    }

    2.非递归方法

    package sort;

    /**
     * @author WangXiaoeZhe
     * @Date: Created in 2019/11/22 13:22
     * @description:
     */

    public class YangHui {
        /**
         * 非递归的方法
         *
         * @param args
         */

        public static void main(String[] args{
            int length = 6;
            int[][] arr = new int[length][];

            for (int i = 0; i < arr.length; i++) {
                arr[i] = new int[i + 1];
                for (int j = 0; j < arr.length - i - 1; j++) {
                    System.out.print("  ");
                }

                for (int j = 0; j < arr[i].length; j++) {
                    if (j == 0 || arr[i].length - 1 == j) {
                        arr[i][j] = 1;
                    } else {
                        arr[i][j] = arr[i - 1][j] + arr[i - 1][j - 1];
                    }
                    System.out.printf("%4d", arr[i][j]);
                }
                System.out.println();
            }
        }

    }
  • 相关阅读:
    一个理科直男如何看《鱿鱼游戏》
    这个开源组织里的项目都是精品(第二弹)
    Python_关于python2的encode(编码)和decode(解码)的使用
    Python学习笔记
    解决E: Could not get lock /var/lib/dpkg/lock
    Ubuntu系统python3版本设置问题
    xshell连接虚拟机linux系统失败问题
    linux菜鸟笔记
    Python小白学习之基础知识(个人笔记)
    Python小白学习之如何添加类属性和类方法,修改类私有属性
  • 原文地址:https://www.cnblogs.com/wuhen8866/p/11911049.html
Copyright © 2011-2022 走看看