尝试将递归JavaScript方法移植到C#,这种方法是否有意义
本文关键字:方法 有意义 是否 递归 JavaScript | 更新日期: 2023-09-27 17:56:49
JavaScript 中的方法是:
findNode: function(root, w, h) {
if (root.used)
return this.findNode(root.right, w, h) || this.findNode(root.down, w, h);
else if ((w <= root.w) && (h <= root.h))
return root;
else
return null;
}
特别是这一行在 C# 中不起作用
return this.findNode(root.right, w, h) || this.findNode(root.down, w, h);
这是我尝试翻译它,但我可以使用第二种意见来判断这是否有效或破坏算法。有没有更好的方法让我错过?
private Node FindNode(Node node, Block block)
{
Node n;
if (node.used) // recursive case
{
// is this a good translation of the JavaScript one-liner?
n = FindNode(node.right, block);
if (n != null)
{
return n;
}
else
{
return FindNode(node.down, block);
}
}
else if ((block.width <= node.width) && (block.height <= node.height)) // Base case
{
return node;
}
else
{
return null;
}
}
这是我正在研究的原始算法。
n = FindNode(node.right, block);
return n ?? FindNode(node.down, block);
将是我唯一要做的改变