C# 中是否有展开链表的实现?

发布于 2024-10-12 18:51:40 字数 256 浏览 3 评论 0原文

我有兴趣使用“展开的链接列表< /a>”在我的 C# 应用程序中。

有谁知道一种稳定的实现,特别是允许我配置为每个数组分配多少填充的实现?

替代文本

I'm interested in using an "unrolled linked list" in my C# application.

Is anyone aware of a stable implementation, especially one that will allow me to configure how much padding to allocate per array?

alt text

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

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

发布评论

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

评论(2

三生一梦 2024-10-19 18:51:40

根据您自己的链接中的第二条评论,这样的列表应该在 PowerCollections 库中的 BigList 中实现。它是开源的,因此您可以查看代码,看看它是否适合您的场景,或者是否可以轻松调整以满足您的需求。

除此之外,我现在知道您可以使用的任何 .NET 实现。

According to the 2nd comment in your own link, such a list should be implemented in BigList in the PowerCollections library. It's open source, so you could have a look at the code and see if it allows for your scenario, or if it can be adapted to fit your needs easily.

Other than that, I am now aware of any .NET implementations you could use.

童话里做英雄 2024-10-19 18:51:40

在这里您可以找到用 Java 编写的有效实现。它可以是用 C# 编写新实现的良好起点。我已经测试过这个类,它比 Java 中的标准 LinkedList 类快很多倍。

Here you can find a working implementation written in Java. It can be a good starting point to write a new implementation in C#. I have tested this class and it is many times faster than the standard LinkedList class in Java.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文