计算文件夹大小的递归函数抛出 NullPointerException (Java)
我编写了递归方法来计算文件夹大小: private static long calcSize(File dir) { if (dir.isFile() && dir.canRead()) { return dir.length() }…
是否存在可用的种子人工智能
Closed. This question needs to be more focused. It is not currently accepting answers. 想要改进这个问题?通过编辑这篇文章来更新问题,使其仅…
递归计算base的n次方值
这是我的解决方案: public int powerN(int base, int n) { if(n == 0) return 1 else if(n % 2 == 0) return base * base else return base * powerN…
这个函数如何计算树中的节点数?
计算树中节点数量的函数。 int count(node *t) { int i if (t == NULL) return(0) i = 1 + count(t->left) + count(t->right) // recursion occur…
IRC Php 机器人 - 嵌套错误
我使用的是 SimplePhp IRC BOT,你可以看到所有代码就在页面上。 我遇到的问题是主函数递归地调用它,因此在 100 次调用之后,它只是出错并出现以下错…
从质因数重建除数列表(递归)
我有一个数字的质因数列表,其形式如下: int[] 因子 = {因子数,因子1,幂次因子1,因子2,幂次因子2,...} 我想要得到相当于动态嵌套的 for 循环,它将产…
对前 n 个倒数求和的递归函数
下面的函数接受一个整数 n 并返回前 n 个倒数的和。 sum(2) 应该返回 1.5 这是我所拥有的: public double sum(int n) { if (n < 0) { throw new Il…