返回零个数的递归方法
这是我用来研究的一个旧测试。 我需要编写一个递归方法,返回 int[] 上从位置 0 开始的零个数。 给定 int numberOfZeroes(int[] a, int right);
This is from an old test that I'm using to study.
I need to write a recursive method that returns the number of zeroes on the int[] from position 0 and right.
given int numberOfZeroes(int[] a, int right);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这假设
right < a.长度
This assumes
right < a.length
执行 numberOfZeros(a, a.length) 来获取整个数组中零的数量。
Do numberOfZeros(a, a.length) to get the number of zeros in the entire array.