Group by array contents

若如初见. 提交于 2019-12-24 12:12:06

问题


I have a List<Tuple<string,long,byte[]>> and I want to group by the contents of the byte array.

Is there a simple way to do this with GroupBy and a lambda?

Ideally, I want to do this without creating an intermediate data structure (like a string to hold the elements of the array).


回答1:


You can achieve that using custom IEqualityComparer<byte[]> (or even better, generic one: IEqualityComparer<T[]>) implementation:

class ArrayComparer<T> : IEqualityComparer<T[]>
{
    public bool Equals(T[] x, T[] y)
    {
        return x.SequenceEqual(y);
    }

    public int GetHashCode(T[] obj)
    {
        return obj.Aggregate(string.Empty, (s, i) => s + i.GetHashCode(), s => s.GetHashCode());
    }
}

I'm pretty sure GetHashCode could be implemented much better, but it's just an example!

Usage:

var grouped = source.GroupBy(i => i.Item3, new ArrayComparer<byte>())


来源:https://stackoverflow.com/questions/15841178/group-by-array-contents

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!