10

我还真不明白这个T的东西。我需要将以下结果转换为列表

private void generateKeywords_Click(object sender, RoutedEventArgs e)
{
   string srText = new TextRange(
     txthtmlsource.Document.ContentStart,
     txthtmlsource.Document.ContentEnd).Text;
   List<string> lstShuffle = srText.Split(' ')
       .Select(p => p.ToString().Trim().Replace("\r\n", ""))
       .ToList<string>();
   lstShuffle = GetPermutations(lstShuffle)
       .Select(pr => pr.ToString())
       .ToList();
}

public static IEnumerable<IEnumerable<T>> GetPermutations<T>(
                                              IEnumerable<T> items)
{
    if (items.Count() > 1)
    {
        return items
          .SelectMany(
             item => GetPermutations(items.Where(i => !i.Equals(item))),
             (item, permutation) => new[] { item }.Concat(permutation));
    }
    else
    {
        return new[] { items };
    }
}

下面的这一行失败,因为我无法正确转换。我的意思不是错误,但也不是字符串列表

lstShuffle = GetPermutations(lstShuffle).Select(pr => pr.ToString()).ToList();
4

2 回答 2

22

对于任何IEnumerable<IEnumerable<T>>我们可以简单地调用SelectMany.

例子:

IEnumerable<IEnumerable<String>> lotsOStrings = new List<List<String>>();
IEnumerable<String> flattened = lotsOStrings.SelectMany(s => s);
于 2013-06-06T04:09:05.137 回答
2

由于lstShuffleimplements IEnumerable<string>,您可以在心理上替换Tstring: you're call IEnumerable<IEnumerable<string>> GetPermutations(IEnumerable<string> items)

正如 Alexi 所说,SelectMany(x => x)是将 an 扁平IEnumerable<IEnumerable<T>>化为IEnumerable<T>.

于 2013-06-06T02:20:41.660 回答