一个人没有做某件事的原因就是这个人没有做这件事,与其他任何原因没有关系。所有的原因都是找理由,都是替罪的羔羊,都是自我麻醉的毒药,都是在饮鸩止渴。 愤怒的本质就是对自我无能的控诉。 (Sandra)-What do you expect me to do…
遍历
深度优先遍历
function Node(value) {this.value valuethis.left nullthis.right null
}let a new Node(a)
let b new Node(b)
let c new Node(c)
let d new Node(d)
let e new Node(e)
let f new Node(f)
let g new Node(g)
a.left c
a.right b
c.l…