摘要: //封装二分搜索树 function BinarySerachTree(){ function Node(key){ this.key=key this.left=null this.right=null } //属性 this.root=null //方法 //插入数据 BinarySerachT 阅读全文
posted @ 2020-11-05 22:11 石shi 阅读(128) 评论(0) 推荐(0) 编辑