CS-Interview-Knowledge-Map
CS-Interview-Knowledge-Map copied to clipboard
BST 向上取整和向下取整部分代码bug
原文地址:https://yuchengkai.cn/docs/cs/dataStruct.html#%E5%AE%9E%E7%8E%B0-4
向上取整和向下取整那部分的代码:
if (node.value === v) return v
这局应该改为:
if (node.value === v) return node