gpt4 book ai didi

c# - SortedSet.Remove() 不删除任何东西

转载 作者:行者123 更新时间:2023-11-30 20:20:28 28 4
gpt4 key购买 nike

我目前正在实现 Dijkstra 算法,并且正在使用 C# SortedSet 作为优先级队列。但是,为了跟踪我已经访问过哪些顶点,我想从优先级队列中删除第一项。

这是我的代码:

static int shortestPath(int start, int target)
{
SortedSet<int> PQ = new SortedSet<int>(new compareByVertEstimate());
for (int i = 0; i < n; i++)
{
if (i == start - 1)
vertices[i].estimate = 0;
else
vertices[i].estimate = int.MaxValue;

PQ.Add(i);
}

int noOfVisited = 0;
while (noOfVisited < n)
{
int u = PQ.First();
noOfVisited++;

foreach (Edge e in vertices[u].neighbours)
{
if (vertices[e.target.Item1].estimate > vertices[u].estimate + e.length)
{
vertices[e.target.Item1].estimate = vertices[u].estimate + e.length;
}
}

PQ.Remove(u);
}
return vertices[target - 1].estimate;
}

这是比较器:

public class compareByVertEstimate : IComparer<int>
{
public int Compare(int a, int b)
{

if (Program.vertices[a].estimate >= Program.vertices[b].estimate) return 1;
else return -1;
}
}

我的优先级队列没有明确保存顶点,而是我有一个顶点数组,优先级队列保存索引。因此,优先级队列是根据每个顶点持有的“估计”整数进行排序的。

现在我的问题是,我可以使用 .First() 或 .Min 轻松地从 SortedSet 中检索第一个元素,但是当我尝试使用 .Remove() 删除该元素时,该方法返回 false,并且没有任何结果删除。 SortedSet 保持不变。

关于如何解决这个问题有什么想法吗?

提前致谢!

编辑我将 Comparer 更改为:

public class compareByVertEstimate : IComparer<int>
{
public int Compare(int a, int b)
{

if (Program.vertices[a].estimate == Program.vertices[b].estimate) return 0;
else if (Program.vertices[a].estimate >= Program.vertices[b].estimate) return 1;
else return -1;
}
}

但是现在优先级队列不再包含所有正确的元素了。(注意,优先级队列将包含指向具有相同估计值的顶点的指针)

最佳答案

您的比较函数从不 将两个元素比较为相等(return 0;)。

您的集合将无法删除不等于其持有的任何元素的元素。

例子:

public class compareByVertEstimate : IComparer<int>
{
public int Compare(int a, int b)
{

if (a == b) return 0;

if (Program.vertices[a].estimate >= Program.vertices[b].estimate) return 1;

return -1;
}
}

@hvd 当然是正确的,虽然上面的版本有效,但它很破。更好的比较器可能是:

public class compareByVertEstimate : IComparer<int>
{
public int Compare(int a, int b)
{
var ae = Program.vertices[a].estimate;
var be = Program.vertices[b].estimate;

var result = ae.CompareTo(be);

if (result == 0) return a.CompareTo(b);

return result;
}
}

关于c# - SortedSet.Remove() 不删除任何东西,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36664681/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com