求 1+2+...+n ,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
示例 1:
输入: n = 3
输出: 6
示例 2:
输入: n = 9
输出: 45
限制:
1 <= n <= 10000
解法一:短路与,递归
复杂度分析:
时间复杂度 O(n) : 计算 n + (n-1) + ... + 2 + 1 需要开启 n个递归函数。
空间复杂度 O(n): 递归深度达到 n,系统使用 O(n) 大小的额外空间。
class Solution {
int res = 0;
public int sumNums(int n) {
boolean x = n > 1 && sumNums(n - 1) > 0;
res += n;
return res;
}
}