二叉樹:如圖。html
須要建立對象實現其基本結構、封裝相應屬性和方法。建立對象或者繼承對象的方法可見《JavaScript高級程序設計》第六章。此次實現則採起了構造函數進行封裝的方法。node
var Node = function(key){ this.key = key; this.left = null; this.right = null; }; var root = null;