首页 > 编程 > JavaScript > 正文

JavaScript实现树的遍历算法示例【广度优先与深度优先】

2019-11-19 15:04:08
字体:
来源:转载
供稿:网友

本文实例讲述了JavaScript实现树的遍历算法。分享给大家供大家参考,具体如下:

<script type="text/javascript">var t = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19];//下面这段深度优先搜索方法出自Aimingoo的【JavaScript语言精髓与编程实践】var deepView = function(aTree,iNode) {  (iNode in aTree) && (document.write(aTree[iNode]+'<br/>'),arguments.callee(aTree,2*iNode+1),arguments.callee(aTree,2*iNode+2))}//广度优先var wideView = function(aTree,iNode) {  var aRTree = aTree.slice(0),iRNode = iNode,iLevel = 1;  (iRNode in aRTree) && document.write(aRTree[iRNode]+'<br/>');  (function() {    var iStart = iRNode*2+1,iEnd = iStart+Math.pow(2,iLevel);    document.write(aRTree.slice(iStart,iEnd).join(',')+'<br/>');    if(iEnd>=aRTree.length) return;    iRNode = iStart,iLevel++,arguments.callee();  })()}document.write('<h3>二叉树 深度优先</h3>');//深度优先deepView(t,0);document.write('<h3>二叉树 广度优先</h3>');//广度优先wideView(t,0);</script>

运行结果:

更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《JavaScript数据结构与算法技巧总结》、《JavaScript数学运算用法总结》、《JavaScript排序算法总结》、《JavaScript遍历算法与技巧总结》、《JavaScript查找算法技巧总结》及《JavaScript错误与调试技巧总结

希望本文所述对大家JavaScript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表