插入LINQ

时间:2013-05-20 17:32:39

标签: c# linq

我有一个未排序的整数列表:

1 3 1 2 4 3 2 1

我需要对它进行排序,在每组相等数字之前插入一个0:

0 1 1 1 0 2 2 0 3 3 0 4

有没有办法只用一个LINQ语句从第一个列表到第二个列表?我被困在

from num in numbers
orderby num
select num

后跟foreach循环,根据这些结果手动构造最终输出。如果可能的话,我想完全消除第二个循环。

3 个答案:

答案 0 :(得分:8)

尝试:

list.GroupBy(n => n)
      .OrderBy(g => g.Key)
      .SelectMany(g => new[] { 0 }.Concat(g))

对于每组数字,前面加0,然后用SelectMany展平列表。

在查询语法中:

from num in list
group num by num into groupOfNums
orderby groupOfNums.Key
from n in new[] { 0 }.Concat(groupOfNums)
select n

答案 1 :(得分:6)

int[] nums = { 1, 3, 1, 2, 4, 3 ,2 ,1};
var newlist = nums.GroupBy(x => x)
                  .OrderBy(x=>x.Key)
                  .SelectMany(g => new[] { 0 }.Concat(g)).ToList();

答案 2 :(得分:1)

在LinqPad上试试这个。

var list = new int[]{1, 3, 1, 2, 4, 3, 2, 1};
var q = from x in list
        orderby x
        group x by x into xs
        from y in (new int[]{0}).Concat(xs)
        select y;
q.Dump();

这应该会给你想要的结果。