I'm trying to find a efficient algorithm in C, which provides me all combinations of a given charset.
The algorithm should not recursive. At last the number of digits should be flexible. For example:
char set[] = "a1";
->
a1
aa
1a
11
I've only found a Perl solution, but it uses substr(). I think that wasn't that fast performance-wise.
For most algorithms in C, I've found were only permutations...
A article in a german C++ forum claims, that C++-STL Solutions are faster than "raw" recursive algorithms.

char set[] = "a1"; -> a1 aa 1a 11. Why not aaa, aa1, a1a, a11, 1aa, 1a1, 11a and 111? – Oswald Apr 11 '11 at 20:37