CS-Interview-Knowledge-Map icon indicating copy to clipboard operation
CS-Interview-Knowledge-Map copied to clipboard

BST 向上取整和向下取整部分代码bug

Open jackgreentemp opened this issue 6 years ago • 0 comments

原文地址: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

jackgreentemp avatar Jan 18 '19 05:01 jackgreentemp