I'm searching for a library (preferably generic) that generates iterable combinations and permutations of data contained in collections. Cartesian product would also be nice.

The best way of describing what I want would be "itertools for Java".

link|improve this question

67% accept rate
2  
Personally, I'm quite happy using itertools for Python. – Tom Leys Oct 7 '09 at 1:29
feedback

5 Answers

up vote 2 down vote accepted

itertools does much more than just combinations and permutations, so (while it would surely be nice to have all of itertools when coding Java;-) you can get away with much less.

For example, for permutations, see here; for combinations, here (both classes are from the same author).

link|improve this answer
Thanks, probably I'll adapt something from the links you shared. I also agree that it would be great to have all of itertools. – Fabio de Miranda Oct 7 '09 at 2:54
@Fabio, I agree. Shouldn't be too hard to write, either -- if I had to use Java often (currently I don't), I'd seriously consider doing that. – Alex Martelli Oct 7 '09 at 3:50
feedback

I'm actually making a port of itertools to java: it's called neoitertools

Any feedback appreciated as it still in beta. Missing the "product" function yet, and some intensive tests.

link|improve this answer
Awesome, +1 for the notice. I'll check it out – Fabio de Miranda Apr 24 '11 at 13:58
Thank you ! And by the way, I've released neoitertools in maven, I would greatly appreciate any feedbacks ! – eric May 6 '11 at 23:59
feedback

Cartesian product is available here: http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/collect/Sets.html#cartesianProduct%28java.util.Set...%29

link|improve this answer
Thanks, I'll check it out. The design based on generics may help me solve my problem. – Fabio de Miranda Jan 12 '10 at 13:19
feedback

Here you find something that might cover your combinatorial needs bundled in a library:

http://code.google.com/p/combinatoricslib/

link|improve this answer
feedback

I'm just throwing this out there, but shouldn't it be possible to use Python's itertools implementation directly from Java using Jython? Is it a C-based api?

[one Google later]

itertools (Jython API documentation)

Actually, the neoitertools project listed above looks very promising, it appears to be in [very] active development (according to Google code) and looks to be a complete implemetation of the itertools functionality, plus it's available via Maven.

Just my 2 pence.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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