摘要: function Node(data,left,right) { this.left=left this.right=right this.data=data } function Btr() { this.root = null; } // D:根节点 L:左子节点 R:右子节点 ... 阅读全文
posted @ 2017-10-19 18:27 小结巴巴吧 阅读(631) 评论(0) 推荐(0) 编辑