js数据结构和算法---二叉树
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js数据结构和算法---二叉树相关的知识,希望对你有一定的参考价值。
原文: 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数据结构和算法---二叉树的主要内容,如果未能解决你的问题,请参考以下文章