本文实例讲述了JS实现的二叉树算法。分享给大家供大家参考,具体如下:
<!DOCTYPE HTML>
<head>
<title>20130328BinaryTree</title>
<metahttp equiv=Content-Type content=text/html; charset=utf-8>
</head>
<html>
<body>
[removed]
//今天学习了下二叉树算法,总结在这里
//1全局变量 binary Tree =bt
//1.1 node
function Node() { //bt节点
th