码迷,mamicode.com
首页 > 编程语言 > 详细

结构算法

时间:2016-07-12 19:27:52      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

// 二叉树
function BinaryTree() {
    this.root = null;
    this.node = function (val) {return {val: val, left: null, right: null}};
    this.add  = function (val) {
        if (this.root === null) {
            this.root = this.node(val);
        }
        else {
            var current = this.root;
            var parent;
            
            while (true) {
                parent = current;
                if (val < current.val) {
                    current = current.left;
                    if (current === null) {
                        parent.left = this.node(val);
                        break;
                    }
                }
                else {
                    current = current.right;
                    if (current === null) {
                        parent.right = this.node(val);
                        break;
                    }
                }
            }
        }
    };
}

 

结构算法

标签:

原文地址:http://www.cnblogs.com/shanchenba/p/5664419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!