码迷,mamicode.com
首页 > 其他好文 > 详细

第一个算法

时间:2014-06-10 11:23:15      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

【程序1】   题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第四个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子有多少对?

算法一:

bubuko.com,布布扣
public class ArithmeticTest1 {
    public static void main(String[] args){
        int[] count= new int[1000];long start=System.currentTimeMillis();
        for(i=1;i<=1000;i++) {
            if (i == 1 || i == 2) {
                System.out.println(i + ":" + 1);
                count[i]=1;
            }else{
               count[i]=count[i-1]+count[i-2];
                System.out.println(i + ":" + count[i]);
            }
        }
        long end=System.currentTimeMillis();
        System.out.println("运行时间:"+(end-start));
    }
}
bubuko.com,布布扣

执行时间在42ms左右。

算法二:

bubuko.com,布布扣
public class ArithmeticTest1 {
    public static void main(String[] args){
       ArrayList<Integer> count1=new ArrayList<Integer>();
        int i=0;
        long start=System.currentTimeMillis();
        for(i=1;i<=1000;i++) {
            if (i == 1 || i == 2) {
                System.out.println(i + ":" + 1);
                count1.add(1);
            }else{ 
                count1.add(count1.get(i-2)+count.get(i-3));
                System.out.println(i + ":" + count1.get(i-1));
            }
        }
        long end=System.currentTimeMillis();
        System.out.println("运行时间:"+(end-start));
}
bubuko.com,布布扣

执行时间约为44ms左右。

算法三:

bubuko.com,布布扣
public class ArithmeticTest1 {
    public static void main(String[] args){
        int i=0;
        long start=System.currentTimeMillis();
        math myMath = new math();
        for(i=1;i<=1000;i++)
            System.out.println(i + ":" + myMath.f(i));
        long end=System.currentTimeMillis();
        System.out.println("运行时间:"+(end-start));
    }
    static class math{
        public int f(int x){
            if(x==1||x==2)
                return 1;
            else
                return f(x-1)+f(x-2);
        }
    }
}
bubuko.com,布布扣

执行时间n秒长。

第一个算法,布布扣,bubuko.com

第一个算法

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/renyubins/p/3779116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!