摘要:
题目描述 一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。 public static int JumpFloorII(int target) { int[] a = new int[target+1]; a[0] = 1; a[1] = 阅读全文
摘要:
package solution; public class Fibonacci { /* * f(n) = f(n-1) + f(n-2) n>1 * f(0) = 0 * f(1) = 1 * */ public static void main(String[] args) { System.out.print... 阅读全文
摘要:
不能再中断服务程序调用该函数 应该调用xQueueSendFromISR() 阅读全文