Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There must be a short and sweet way to generate a List, or array of Integers, with the values from begin to end.

That is, something shorter than, but equivalent (outside of error handling) to:

void List<Integer> makeSequence(int begin, int end) {
  List<Integer> ret = new ArrayList(end-begin+1);
  for (int i=begin; i<=end; i++) {
    ret.add(i);
  }
  return ret;  
}

... but it's evading me. Use of guava or commons-* is fine.

share|improve this question
For apache commons, stackoverflow.com/a/5744861/560302 – ManojGumber Apr 20 '12 at 8:06

5 Answers

Well, this one liner might qualify (uses guava Ranges)

    ImmutableList<Integer> integerList = Ranges.closedOpen(0, 10).asSet(DiscreteDomains.integers()).asList();
    System.out.println(integerList);

Produces:

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
share|improve this answer
4  
I wouldn't use asList() there unless you really needed a List... the ContiguousSet produced by asSet is lightweight (it just needs the range and the domain), but asList() will create a list that actually stores all the elements in memory (currently). – ColinD Apr 20 '12 at 12:39
Agreed. The OP was asking for a List or array though, otherwise I would have left it out – daveb Apr 20 '12 at 13:51

This is the shortest I could get using Core Java.

void List<Integer> makeSequence(int begin, int end) {
  List<Integer> ret = new ArrayList(end-begin+1);

  for(int i = begin; i <= end; i++, ret.add(i));

  return ret;  
}
share|improve this answer
2  
You can shave off a couple more characters by changing that loop to for(int i = begin; i <= end; ret.add(i++)); :) – Baqueta Apr 20 '12 at 8:27
I'm not really sure that moving the ret.add(i) part into the for loop increment makes this "shorter". I guess by that logic if I wrote it all on one line it would be shorter :) – BeeOnRope Apr 20 '12 at 8:27
@BeeOnRope Yes, definitely not the shortest, but shorter by two lines for sure :) As I said, this is the closest we can come to shortening it in Core Java. – adarshr Apr 20 '12 at 9:21

You could use Guava Ranges

You can get a SortedSet by using

ImmutableSortedSet<Integer> set = Ranges.open(1, 5).asSet(DiscreteDomains.integers());
// set contains [2, 3, 4]
share|improve this answer

This is the shortest I could find.

List version

public List<Integer> makeSequence(int begin, int end)
{
    List<Integer> ret = new ArrayList<Integer>(++end - begin);

    for (; begin < end; )
        ret.add(begin++);

    return ret;
}

Array Version

public int[] makeSequence(int begin, int end)
{
    if(end < begin)
        return null;

    int[] ret = new int[++end - begin];
    for (int i=0; begin < end; )
        ret[i++] = begin++;
    return ret;
}
share|improve this answer

This one might works for you....

void List<Integer> makeSequence(int begin, int end) {

  AtomicInteger ai=new AtomicInteger(begin);
  List<Integer> ret = new ArrayList(end-begin+1);

  while ( end-->begin) {

    ret.add(ai.getAndIncrement());

  }
  return ret;  
}
share|improve this answer
Using AtomicInteger is very heavy for ressources, around ten time slower in my test. But it is secure for multithread. end<begin not verified – cl-r Apr 20 '12 at 12:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.