I have a problem.I developed a program with Apriori Algorithm.In Apriori Algorithm,I must take permutation values.For This
foreach (String s1 in array1) {
foreach (String s2 in array2) {
String result = s1 + " " + s2 + " " + s3;
//Processing
}
}
I coding something.But this code only taking binary permutation.I must take binary,triple,four,quintet permutations with Automatically. Do u have idea for this?