C# 中是否有展开链表的实现?
我有兴趣使用“展开的链接列表< /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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据您自己的链接中的第二条评论,这样的列表应该在 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.
在这里您可以找到用 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.