首页 > TAG信息列表 > fac2

递归

递归 1. def fac1(x): if x>0: print(x, end=' ') fac1(x-1) fac1(5)           def fac2(x): if x>0: fac2(x-1) print(x, end=' ') # fac1(5) fac2(5)  

ZJOI2020 抽卡

第一次出现合法状态的期望时间可以转换为所有非法状态的出现概率乘以其在此处期望停留的时间。 设此非法状态抽了 \(r\) 张卡,那么其有 \(\binom{m}{r}^{-1}\) 的概率出现,经过 \(\frac{m}{m-r}\) 时间后会到达下一个状态。 只需要计数所有非法状态的数量即可。 对每个极长连续段考

求阶乘和(二次递归)

1 public class test72 { 2 /** 3 * 求阶乘和 4 * @param args 5 */ 6 public static void main(String[] args) { 7 int sum = fac2(4); 8 System.out.println(sum); 9 } 10 11 public static Integer fac1(int n) {

R语言学习日记(5)--《R语言入门》

创建矩阵对象: #创建矩阵matrix(data = NA , nrow = 1 , ncol = 1 , byrow = FALSE , dimnames = NULL) #byrow = FALSE表示默认按列填充,dimnames选项给行列命名。 > matrix(data = 3 , nr = 2 , nc = 2) [,1] [,2] [1,] 3 3 [2,] 3 3 > matrix(1:9 , 3 ,