本文共 412 字,大约阅读时间需要 1 分钟。
function Node(data,left,right) { this.left=left this.right=right this.data=data } function Btr() { this.root = null; } // D:根节点 L:左子节点 R:右子节点 Btr.prototype.insert=function (data) { //生成排序的 二叉树 if(this.root==null){ this.root = new Node(data,null,null) }else { var current = this.root; while(true){ if(data
转载地址:http://rcnba.baihongyu.com/