• 【数据结构算法(一)】递归篇(常见实例讲解)


    🌈键盘敲烂,年薪30万🌈

    本篇讲解实例:

    • 斐波那契、兔子问题、猴子吃桃问题、跳台阶问题、汉诺塔、杨辉三角

    用到的递归思想:

    • 无记忆递归、记忆递归(重点掌握)

    目录

    一、斐波那契:

    ①无记忆多路递归:

    ②⭐记忆递归:

    二、兔子问题:

    三、跳台阶问题:

    四、汉诺塔问题:

    五:杨辉三角问题:

    ①无记忆递归:

    ②⭐记忆递归:

    六、猴子吃桃问题:


    一、斐波那契:

    问题描述:

    这个数列的每个数字都是前两个数字之和,数列的第一个和第二个数规定为1

    ①无记忆多路递归:
    • 时间复杂度:O(n^2) -  很恐怖
    1. public class FibonaciNoMemory {
    2. // 1 1 2 3 5 8 13 21 34 55……
    3. public static void main(String[] args) {
    4. int n = 10;
    5. //无记忆性的递归
    6. int ans2 = noMemoryRecursion(n);
    7. System.out.println(ans2);
    8. }
    9. private static int noMemoryRecursion(int n) {
    10. if(n == 1 || n == 2){
    11. return 1;
    12. }
    13. return noMemoryRecursion(n-1) + noMemoryRecursion(n-2);
    14. }
    15. }
    ②⭐记忆递归:
    • 时间复杂度:O(n)
    1. public class FibonaciRemind {
    2. public static void main(String[] args) {
    3. int n = 10;
    4. int ans = remindRecursion(n);
    5. System.out.println(ans);
    6. }
    7. private static int remindRecursion(int n) {
    8. int[] cache = new int[n+1];
    9. Arrays.fill(cache, -1);
    10. cache[0] = 1; cache[1] = 1;
    11. return help(n-1, cache);
    12. }
    13. private static int help(int n, int[] cache) {
    14. if(cache[n] != -1){
    15. return cache[n];
    16. }
    17. int val = help(n-1, cache) + help(n-2, cache);
    18. cache[n] = val;
    19. return val;
    20. }
    21. }

     

    二、兔子问题:

    问题描述:

    有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?

    代码同斐波那契差不多,多了个求和,这个兔子问题就是列昂纳多·斐波那契引申出的。

    1. public class a06_rabbit {
    2. public static void main(String[] args) {
    3. int month = 10;
    4. int count = getCount(month);
    5. System.out.printf("第十个月,共%d只兔子", count);
    6. }
    7. private static int getCount(int month) {
    8. int[] cache = new int[month];
    9. cache[0] = 1;cache[1] = 1;
    10. help(month-1, cache);
    11. int total = 1;
    12. for (int i = 0; i < month; i++) {
    13. total += cache[i];
    14. }
    15. return total;
    16. }
    17. private static int help(int month, int[] cache) {
    18. if(cache[month] != 0){
    19. return cache[month];
    20. }
    21. cache[month] = help(month - 1, cache) + help(month - 2, cache);
    22. return cache[month];
    23. }
    24. }

     

    三、跳台阶问题:

    问题描述:

    鸡哥跳台阶,有时跳一阶,有时跳二阶,问,若有10层台阶,有多少种跳法

    1. public class SkipStairs {
    2. public static void main(String[] args) {
    3. int n = 10;
    4. int ans = getCount(n);
    5. System.out.printf("共有%d种跳法", ans);
    6. }
    7. private static int getCount(int n) {
    8. return help(n);
    9. }
    10. private static int help(int n) {
    11. if(n == 1){
    12. return 1;
    13. }
    14. if(n == 2){
    15. return 2;
    16. }
    17. return help(n-1) + help(n-2);
    18. }
    19. }

     

    四、汉诺塔问题:

    问题描述:

    有三根柱子,编号为A、B、C,开始时在柱子A上有一些个圆盘,它们按照从下到上的顺序递增(最下面的最大,最上面的最小)。现在要将这些圆盘从柱子A移动到柱子C,中间可以借助柱子B,但有一些规则需要遵守:

    1. 每次只能移动一个圆盘。
    2. 移动过程中,大圆盘不能放在小圆盘上面。
    1. public class Demo1 {
    2. static LinkedList a = new LinkedList<>();
    3. static LinkedList b = new LinkedList<>();
    4. static LinkedList c = new LinkedList<>();
    5. public static void main(String[] args) {
    6. a.addLast(3);
    7. a.addLast(2);
    8. a.addLast(1);
    9. move(3, a, b, c);
    10. }
    11. private static void move(int n, LinkedList a, LinkedList b, LinkedList c) {
    12. if(n == 0){
    13. return;
    14. }
    15. //转移n-1个到b - 要借助c
    16. move(n-1, a, c, b);
    17. //将最大的移到C
    18. c.add(a.removeLast());
    19. myPrint();
    20. //将n-1个到c - 要借助a
    21. move(n-1, b, a, c);
    22. }
    23. private static void myPrint() {
    24. System.out.println(a);
    25. System.out.println(b);
    26. System.out.println(c);
    27. System.out.println("===============");
    28. }
    29. }

     

    五:杨辉三角问题:

    问题描述:有个三角形,每一行的该数等于上一行同列数+上一行前一列的数

    ①无记忆递归:
    1. public class Demo2 {
    2. public static void main(String[] args) {
    3. int n = 6;
    4. print(n);
    5. }
    6. private static void printSpace(int n){
    7. for (int i = 0; i < n; i++) {
    8. System.out.print(" ");
    9. }
    10. }
    11. private static void print(int n) {
    12. for (int i = 0; i < n; i++) {
    13. printSpace((n-i-1)*2);
    14. for (int j = 0; j <= i; j++) {
    15. System.out.printf("%-4d", getElement(i, j));
    16. }
    17. System.out.println();
    18. }
    19. }
    20. private static int getElement(int row, int col){
    21. if(col == 0 || col == row){
    22. return 1;
    23. }
    24. return getElement(row-1, col-1) + getElement(row-1, col);
    25. }
    26. }
    ②⭐记忆递归:
    1. public class Demo1 {
    2. public static void main(String[] args) {
    3. int n = 6;
    4. print(n);
    5. }
    6. private static void printSpace(int n){
    7. for (int i = 0; i < n; i++) {
    8. System.out.print(" ");
    9. }
    10. }
    11. private static void print(int n) {
    12. int[][] cache = new int[n][];
    13. for (int i = 0; i < n; i++) {
    14. printSpace((n-i-1)*2);
    15. cache[i] = new int[i+1];
    16. for (int j = 0; j <= i; j++) {
    17. System.out.printf("%-4d", getElement(cache, i, j));
    18. }
    19. System.out.println();
    20. }
    21. }
    22. private static int getElement(int[][] cache, int row, int col){
    23. if(cache[row][col] > 0){
    24. return cache[row][col];
    25. }
    26. if(col == 0 || col == row){
    27. cache[row][col] = 1;
    28. return 1;
    29. }
    30. cache[row][col] = getElement(cache, row-1, col-1) + getElement(cache, row-1, col);
    31. return cache[row][col];
    32. }
    33. }

     

    六、猴子吃桃问题:

    问题描述:

    有一只猴子摘了一堆桃子,第一天它吃了其中的一半,并再多吃了一个;第二天它又吃了剩下的桃子的一半,并再多吃了一个;以后每天都吃了前一天剩下的一半并再多吃了一个。到第n天想再吃时,发现只剩下一个桃子。问这堆桃子原来有多少个?

    1. public class MonkeyEatPeach {
    2. public static void main(String[] args) {
    3. int days = 9; // 假设猴子在第9天时发现只剩下一个桃子
    4. // 调用计算桃子数量的方法
    5. int result = calculatePeaches(days);
    6. // 输出结果
    7. System.out.println("猴子摘的桃子总数为:" + result);
    8. }
    9. // 计算桃子数量的方法
    10. public static int calculatePeaches(int days) {
    11. if(days == 1){
    12. return 1;
    13. }
    14. return (calculatePeaches(days - 1) + 1) * 2;
    15. }
    16. }

  • 相关阅读:
    2022/8/3
    Debian 9 Stretch APT问题
    数据库第三章相关习题记录-关系数据库标准语言SQL
    【网页设计】基于HTML+CSS+JavaScript学生网上报到系统响应式网站
    【技巧】Mac 通过命令查看某个目录下子文件或者子目录的大小
    2 蓝桥杯打题记录
    delaunay和voronoi图 人脸三角剖分
    Spring Boot 2.x源码系列【5】启动流程深入解析之准备环境
    图解设计模式:身份认证场景的应用
    【车载测试收徒】【UDS诊断中的协议:ISO-14229中文】
  • 原文地址:https://blog.csdn.net/Panci_/article/details/134488914