InterviewMap / CS-Interview-Knowledge-Map

Build the best interview map. The current content includes JS, network, browser related, performance optimization, security, framework, Git, data structure, algorithm, etc.
https://yuchengkai.cn/docs/frontend/
18.3k stars 2.57k forks source link

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

Open jackgreentemp opened 5 years ago

jackgreentemp commented 5 years ago

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