摘要:
都是些简单的东西,所以直接上代码了。/** * Created by huangjacky on 14-10-3. */function Node(element, left, right) { this.element = element; this.level = 0; thi... 阅读全文
摘要:
最近在重温数据结构,于是写了一些代码玩玩,都是很初级的,表喷各位。。。。function Stack() { this.dataStore = []; this.top = 0;}Stack.prototype = { length: function () { re... 阅读全文