C# 集合,其行为类似于 C++设置还是优先级队列?

发布于 2024-08-28 08:06:19 字数 187 浏览 6 评论 0原文

我已经用 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 技术交流群。

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

发布评论

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

评论(1

野侃 2024-09-04 08:06:19

如果您使用更新的 .NET Framework 版本,则可以使用 SortedSet

You can use SortedSet if you use a more recent .NET Framework version.

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