0

我有一个列表,我将它分组到不同的列表中。

从:

List -> "a","b","c","it","as","am","cat","can","bat"

进入

List1 -> -a,b,c
List2 -> it,as,am
List3 -> cat,can,bat

如何连接此列表中所有可能的组合,输出如下:

一个,它,猫
b,它,猫
c,它,猫
一个,我,猫
b,我,猫
c,我,猫
.
.
.
.
等等……
4

3 回答 3

2

只需以嵌套方式遍历每个列表并组合:

StringBuilder sb = new StringBuilder();

for(int i =0; i < list1.Length; i++){
  for(int j =0; j < list2.Length; j++){
    for(int x =0; x < list3.Length; x++){
       sb.AppendFormat("{0},{1},{2}\n", list1[i], list2[j], list3[x]);
    }
  }
}

string result = sb.ToString();
于 2010-05-27T07:45:25.550 回答
1

怎么样

List<string> l1 = new List<string>();
List<string> l2 = new List<string>();
List<string> l3 = new List<string>();
l1.Add("1");
l1.Add("2");
l1.Add("3");
l2.Add("a");
l2.Add("b");
l2.Add("c");
l3.Add(".");
l3.Add("!");
l3.Add("@");

var product = from a in l1
from b in l2
from c in l3
select  a+","+b+","+c;
于 2010-05-27T08:01:37.193 回答
1
List<string> result = new List<string>();
foreach (var item in list1
    .SelectMany(x1 => list2
        .SelectMany(x2 => list3
            .Select(x3 => new { X1 = x1, X2 = x2, X3 = x3 }))))
{
    result.Add(string.Format("{0}, {1}, {2}", item.X1, item.X2, item.X3));
}

当然你可以直接用 把它变成一个列表ToList(),那么你就根本不需要了foreach。无论您需要对结果做什么...

于 2010-05-27T08:02:56.250 回答