设计模式与数据结构
爱果冻真是太好了
这个作者很懒,什么都没留下…
展开
-
JS中的设计模式与数据结构之单链表
链表Node类function Node(x){ //节点的值 this.value = x; //节点的下一个指向 this.next = null;}NodeList类function NodeList(){ //初始化定义首节点 this.head = new Node('head'); //定义find方法 this.find = find;}find方法...原创 2019-08-26 12:30:53 · 215 阅读 · 0 评论 -
JS中的设计模式与数据结构之二叉排序树
function Node(value, left, right) { this.value = value; this.left = left; this.right = right; this.show = show;}function show() { return this.value;}function BST() { this....原创 2019-08-27 16:35:58 · 151 阅读 · 0 评论 -
JS中的设计模式与数据结构之栈
//创建一个Stack的构造函数function Stack() { //利用名为dataStore的数组存储栈元素 this.dataStore = []; //利用top存储栈顶位置 this.top = 0; //push()方法向栈添加元素 this.push = push; //pop()方法删除栈顶元素并返回 this.pop...原创 2019-08-28 11:04:50 · 168 阅读 · 0 评论