树形数据的遍历搜索方法

function deepQuery(tree, id){
    var stark = [];

    stark = stark.concat(tree);

    while(stark.length) {
        var temp = stark.shift();
        if(temp.children) {
            stark = temp.children.concat(stark);
        }
        if(id === temp.id) {
            return temp;
        }
    }
}

你可能感兴趣的:(JS)