码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript数据结构-栈

时间:2015-04-26 01:48:56      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:javascript数据结构-栈

栈特点:

1.在栈顶添加或删除 

2.有序 

3.元素只能通过列表的一端访问 

4.后入先出(LIFO)


栈的三个主要方法 push()  pop()  peek();


     

function Stack() {
        this.top = 0;
        this.dataStore = [];
        this.push = push;
        this.pop = pop;
        this.peek = peek;
        this.clear = clear;
        this.length = length;
      }
      function push(element) {
        this.dataStore[this.top++] = element;
      }
      function pop() {
        return this.dataStore[--this.top];
      }
      function peek() {
        return this.dataStore[this.top-1];
      }
      function length() {
        return this.top;
      }
      function clear() {
        this.top = 0;
      }
      var stack = new Stack();
      stack.push("1");
      stack.push("2");
      stack.push("3");
      stack.push("4");
      stack.push("5");
      stack.push("6");
      console.log(stack.pop());
      console.log(stack.peek());


JavaScript数据结构-栈

标签:javascript数据结构-栈

原文地址:http://51web.blog.51cto.com/4386311/1638273

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!