如何展平对象集合(对象集合又包含集合)?

发布于 2024-10-27 16:55:12 字数 146 浏览 2 评论 0原文

我有一个 IEnumerable 集合,它是分层的,因为一个元素包含多个元素。因此,如果我进行计数,我可能会得到 7-8 作为返回 int,而实际上可能有 500 个项目(因为它们是嵌套的)。

如何将此集合展平为包含所有元素且无嵌套的集合?

谢谢

I have an IEnumerable collection, which is hierarchical in that one element contains several within it. Thus, if I do a count, I may get 7-8 as the return int, when really there could be 500 items (as they're nested).

How can I flatten this collection into a collection with all the elements and no nesting?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云不回头 2024-11-03 16:55:12

假设 smallEnumerable 是包含 7-8 个项目的集合,其中每个项目都有一个属性 SubItems ,它本身就是相同类型项目的可枚举,那么您可以像这样展平如果

var flattened = smallEnumerable.SelectMany(s => s.SubItems);

每个 SubItems 都可以拥有 SubItems 本身,那么就可以进行一些递归:

IEnumerable<MyType> RecursiveFlatten(IEnumerable<MyType> collection)
{
    return collection.SelectMany(
      s => s.SubItems.Any() ? s.Concat(RecursiveFlatten(s.SubItems)) : s);
}

Assuming that smallEnumerable is the collection with 7-8 items, each one of which has a property SubItems which is itself an enumerable of items of the same type, then you flatten like this:

var flattened = smallEnumerable.SelectMany(s => s.SubItems);

If each one of the SubItems can have SubItems itself, then some recursion is in order:

IEnumerable<MyType> RecursiveFlatten(IEnumerable<MyType> collection)
{
    return collection.SelectMany(
      s => s.SubItems.Any() ? s.Concat(RecursiveFlatten(s.SubItems)) : s);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文