如題,c#版電(diàn)商(shāng)SKU排列組合結果查詢算法示例代碼
class Program { static void sku(string nn,int c,List<string> L, List<List<string>> ooop) { c = c + 1; foreach (var value in L) { if (ooop.Count > c) { var mm = nn + "," + value; sku(mm, c, ooop[c], ooop); } else { Console.WriteLine(nn + "," + value); } } } static void Main(string[] args) { List<string> L1 = new List<string>() { "藍色", "灰色", "紅色" }; List<string> L2 = new List<string>() { "S", "M", "L" }; List<string> L3 = new List<string>() { "圓領", "心領" }; List<List<string>> ooop = new List<List<string>>() { L1, L2, L3}; if (ooop.Count>0) { sku("", 0, ooop[0], ooop); } Console.Read(); } }