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

js数据结构和算法---二叉树

时间:2017-11-11 16:45:21      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:nod   https   null   div   后序遍历   nbsp   中序遍历   code   children   

原文: https://segmentfault.com/a/1190000000740261

//前序遍历
function preOrder(node) {
  if (node != null) {
    node.style.background = "black";
    setTimeout(function () {
      preOrder(node.children[0]);
    },1500);
    setTimeout(function () {
      preOrder(node.children[1]);
    },1500);
  }
}
//中序遍历        
function inOrder(node) {
  if (node!=null){
    setTimeout(function () {
      inOrder(node.children[0]);
    },1500)
    node.style.background = "black";
    setTimeout(function () {
      inOrder(node.children[1]);
     })
  }
}
//后序遍历
function postOrder(node) {
  if (node!=null){
    setTimeout(function () {
      postOrder(node.children[0]);
    },1500);
    setTimeout(function () {
      postOrder(node.children[1]);
    });
    node.style.background = "black";
  }
}

 

js数据结构和算法---二叉树

标签:nod   https   null   div   后序遍历   nbsp   中序遍历   code   children   

原文地址:http://www.cnblogs.com/qingzhengxiangmingyue/p/7819276.html

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