标签:style blog http color 使用 io 数据 for
递推算法使用“步步为营”的方法,不断利用已有的信息推导出新的东西。
顺推法:是指从已知条件出发,逐步推算出要解决问题的方法。例如:斐波拉契数列就可以通过顺推法不断递推算出新的数据。
/** * @declare 顺推法:是指从已知条件出发,逐步推算出要解决问题的方法。<br> * 例如:斐波拉契数列就可以通过顺推法不断递推算出新的数据。<br> * @author: cphmvp * @version: 1.0 * @date: 2014年7月29日上午9:58:52 */ public class Recurrence { public int fibonacci(int n) { int[] f = new int[n]; f[0] = 1; f[1] = 1; for (int i = 2; i < n; i++) { f[i] = f[i - 1] + f[i - 2]; } return f[n - 1]; } public static void main(String[] args) { Recurrence recurrence = new Recurrence(); int fibonacci = recurrence.fibonacci(10); System.out.println(fibonacci); } }
标签:style blog http color 使用 io 数据 for
原文地址:http://www.cnblogs.com/cphmvp/p/3877331.html