binaryTree.js
摘要:
function Node(data, left, right) { this.data = data; this.left = left; this.right = right; this.show = show; } function show() { return this.data; } function BST() { this.root = null; this.i... 阅读全文
posted @ 2017-04-01 10:23 carlyin 阅读(114) 评论(0) 推荐(0)
浙公网安备 33010602011771号