I have a very weird problem which has some constrains that make it difficult to solve. I have a list of lists and I want to do the combinations of all items in those lists. Each item has a name and a value. Here is an example:
Main List:
- List 01:
- Item 01: name:name01, value:value01
- Item 02: name:name02, value:value02
- List 02:
- Item 01: name:name03, value:value03
- List 03:
- Item 01: name:name04, value:value04
- Item 02: name:name05, value:value05
The end result should look like this:
Some List:
- Item 01: name01:value01, name03:value03, name04:value04
- Item 02: name02:value02, name03:value03, name04:value04
- Item 03: name03:value03, name03:value03, name04:value04
- Item 04: name01:value01, name03:value03, name04:value05
- Item 05: name02:value02, name03:value03, name04:value05
- Item 06: name03:value03, name03:value03, name04:value05
The new list pretty much contains items that act like hash map.
The constrains are the following:
- I cannot collect into new lists and mix them because these lists could quickly grow quite big.
- I am using some kind of observer-like api so I need to let the observer about the result as soon as possible so that I don't use to much memory.
In other words this combinations generator may be feeded with X number of lists each one of which could contain N number of items and I must generate the combinations of them without using too much memory.
I don't expect to work with more then 5 list at a time but I would like to make the algorithm as resilient to code changes as possible.
I am solving the problem in java but the algorithm should work equally in other languages too because it is likely to be translated.
Do you have any ideas, suggestions?
Thanks in advance.
P.S. I don't think that a recursion will work well. I am toying with the idea of using a while loop and some nested loops but it is getting really difficult to envision how this should work.
So this is the cartesian product, you're after?
Assume 3 lists, with 2, 1 and 3 Elements. You would end in 2*1*3 combinations = 6. (abstract: a * b * ... * i)
Now you take 6 numbers from 0 to 5.
Example: