本文介绍了在Java中使用一系列整数获取Iterator的最短路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Java中使用一系列整数获取迭代器的最短路径是什么?换句话说,实现以下内容:
What's the shortest way to get an Iterator over a range of Integers in Java? In other words, implement the following:
/**
* Returns an Iterator over the integers from first to first+count.
*/
Iterator<Integer> iterator(Integer first, Integer count);
类似
(first..first+count).iterator()
推荐答案
直接实施你的作业:
List<Integer> ints = new ArrayList<Integer>();
for (int i = 0; i < count; i++) {
ints.add(first + i);
}
这篇关于在Java中使用一系列整数获取Iterator的最短路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!