标签:for while 查找 text 分解 span 汉诺塔 repeat 整数划分
1 resule:=0 2 if (y mod 400=0) or ((y mod 4=0) and (y mod 100<>0)) 3 then result:=1 4 return(result)
if (y mod 400=0) or ((y mod 4=0) and (y mod 100<>0)) then result:=1 else result:=0 return(result)
result:= (y mod 400=0) or ((y mod 4=0) and (y mod 100<>0)) return(result)
条件判断的结果可以直接引用 “0” “1”
递(问题相似性分解的问题)
归(求解)
栈,手枪弹夹,先进晚出
写递归算法:
递归算法的缺点:所占空间大,算法效率低
小规模使用递归
阶乘
汉诺塔
正整数划分
求最大公约数
标签:for while 查找 text 分解 span 汉诺塔 repeat 整数划分
原文地址:http://www.cnblogs.com/Bird-Xu/p/6206161.html