-2

我正在使用python,并且正在将我的代码实现为c#,并且在python中有方法“product”,有人知道c#中是否有类似的东西吗?如果不是,也许有人可以让我自己了解如何编写此功能?

产品示例:

a=[[[(1, 2), (3, 4)], [(5, 6), (7, 8)], [(9, 10), (11, 12)]], [[(13, 14), (15, 16)]]]

b= product(*a)

输出:

([(1, 2), (3, 4)], [(13, 14), (15, 16)])
([(5, 6), (7, 8)], [(13, 14), (15, 16)])
([(9, 10), (11, 12)], [(13, 14), (15, 16)])
4

3 回答 3

1

假设您的意思是itertools.product(从给出的示例中看起来像):

public static List< Tuple<T, T> > Product<T>(List<T> a, List<T> b)
    where T : struct
{
    List<Tuple<T, T>> result = new List<Tuple<T, T>>();

    foreach(T t1 in a)
    {
        foreach(T t2 in b)
            result.Add(Tuple.Create<T, T>(t1, t2));
    }

    return result;
}

这里的nbstruct表示T必须是值类型或结构。class如果您需要放入诸如 s 之类的对象,请将其更改为List,但请注意潜在的引用问题。

然后作为司机:

List<int> listA = new List<int>() { 1, 2, 3 };
List<int> listB = new List<int>() { 7, 8, 9 };

List<Tuple<int, int>> product = Product<int>(listA, listB);
foreach (Tuple<int, int> tuple in product)
    Console.WriteLine(tuple.Item1 + ", " + tuple.Item2);

输出:

1, 7
1, 8
1, 9
2, 7
2, 8
2, 9
3, 7
3, 8
3, 9
于 2013-05-16T13:37:34.610 回答
0

对于在列表数量上有效的产品功能,您可以在此处CrossProductFunction.CrossProduct使用我的代码:

List<List<Tuple<int>>> a = new List<List<Tuple<int>>> { /*....*/ }
IEnumerable<List<Tuple<int>>> b = CrossProductFunctions.CrossProduct(a)

目前,它不像 dos 那样接受repeat参数itertools.product,但在功能和设计上是相似的。

于 2013-12-30T14:55:54.727 回答
-3

以下是在 C# 中编写函数的语法:

public void product()
        {
          ..........
          .........
        }

关联:

http://www.dotnetspider.com/forum/139241-How-write-function-c-.net.aspx

可以在此链接上获取有关 c# 中各种函数的信息。

于 2013-05-16T11:19:57.640 回答