C# 集合,其行为类似于 C++设置还是优先级队列?
我已经用 C++ 多次编写了 Dijkstra 算法 - 我需要 set 或 priotity_queue,两者都使我有可能添加一个元素并找到最少的一个(使用指定的比较器)。现在,我在尝试用 C# 编写 Dijkstra 时遇到了一个问题 - 是否有任何结构对我有用?我需要添加并查找或删除最少的元素。
使用 Visual Studio '08
I have written the Dijkstra's algorithm many times in C++ - I need there set or priotity_queue, both give me possibility to add an element and find the least one (using specified comparator). Now, I've got a problem when trying to write Dijkstra in C# - is there any structure which could be useful for me? I need adding and finding or erasing the least element.
Using Visual Studio '08
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用更新的 .NET Framework 版本,则可以使用
SortedSet
。You can use
SortedSet
if you use a more recent .NET Framework version.