A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 李红志 中级黑马   /  2013-3-10 13:34  /  1417 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class Recursion {
        public int dex=-1;
       
        public Recursion(){
                dex=getValue(17);
        }
        public int getValue(int dexValue){
                if (dexValue>100)
                        return dexValue;
                else
                        return getValue(dexValue*2);
        }
        public static void main (String[] arguments){
                Recursion r=new Recursion();
                System.out.println(r.dex);
        }
}

评分

参与人数 1技术分 +1 收起 理由
陈丽莉 + 1

查看全部评分

3 个回复

倒序浏览
public class Recursion {
        public int dex=-1;
        
        public Recursion(){
                dex=getValue(17);
        }
        public int getValue(int dexValue){
                if (dexValue>100)
                        return dexValue;
                else
                        return getValue(dexValue*2);//因为当dexValue不大于100的时候会一直调
                                                                       //用 public int getValue(int dexValue),直到满足条件也就是17*2*2*2=136
                                                                      //然后才会将136返回给dex所以打印的是136
        }
        public static void main (String[] arguments){
                Recursion r=new Recursion();
                System.out.println(r.dex);
        }
}

评分

参与人数 1技术分 +1 收起 理由
陈丽莉 + 1

查看全部评分

回复 使用道具 举报
getValue(int dexValue)该函数的最终出口是当dexValue 的值大于100时。此函数是函数的递归调用。一个递归的问题可以分为“回溯”和“递推”两个过程。
调用getValue(17) 返回getValue(34),getValue(34)的值不知道,继续返回getValue(68),此值仍不知道,继续调用函数返回getValue(136),得到函数值为136。此过程为回溯,136依次返回的过程为递推。如下图。

11.png (31.45 KB, 下载次数: 20)

11.png

评分

参与人数 1技术分 +1 收起 理由
陈丽莉 + 1

查看全部评分

回复 使用道具 举报
如果想要返回34,只需在else后 return dexValue就可以了。而代码中,不大于100,调用了函数本身,也就是递归,所以传进去的数会一直乘以2,直到大于100跳出递归调用为止。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马