I want an algorithm that works like this:
Given a number of elements:
A B C D E F
The algorithm should produce all combinations of arrays containing those elements:
[A,B,C,D,E,F]
[AB,C,D,E,F]
[ABC,D,E,F]
[A,BC,D,E,F]
[A,B,C,DEF]
[ABCDEF]
Invalid combinations are (for example):
[AC,B,D,E,F]
[AB,BC,D,E,F]
[BC,DE,FA]
That is, the elements should stay in order.
EDIT: I want to use the algorithm on english sentences to detect compound nouns.
For example:
On the table is a water jug.
Should be recognised as a sequence of following word classes.
Pronoun, Determiner, Noun, Verb, Determiner, Noun
but not
Pronoun, Determiner, Noun, Verb, Determiner, Noun, Noun
1,1,1,1,1,1, the second2,1,1,1,1,0... The pool of valid values for a range length is0-6– Asad Nov 26 '12 at 10:48