码迷,mamicode.com
首页 > 编程语言 > 详细

多数组组合笛卡尔积算法

时间:2017-10-26 11:46:26      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:count   算法   调用   bre   []   trim   for   str   ++   

private string[] bianli(List<string[]> al)
{
if (al.Count == 0)
return null;
int size = 1;
for (int i = 0; i < al.Count; i++)
{
size = size * al[i].Length;
}
string[] str = new string[size];
for (int j = 0; j < size; j++)
{
for (int m = 0; m < al.Count; m++)
{
str[j] = str[j] + al[m][(j * jisuan(al, m) / size) % al[m].Length] + " ";
}
str[j] = str[j].Trim(‘ ‘);
}
return str;
}
private int jisuan(List<string[]> al, int m)
{
int result = 1;
for (int i = 0; i < al.Count; i++)
{
if (i <= m)
result = result * al[i].Length;
else break;
}
return result;
}

 

调用方式:

string[] a = new string[] { "1", "2", "3" };
string[] b = new string[] { "2", "3", "4", "5" };
string[] c = new string[] { "2", "3", "9" };

List<string[]> al = new List<string[]>(){ a,b,c };

string[] mmm= bianli(al);

多数组组合笛卡尔积算法

标签:count   算法   调用   bre   []   trim   for   str   ++   

原文地址:http://www.cnblogs.com/shengfan/p/7735548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!