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

3.栈和队列的实现(JavaScript版)

时间:2020-06-23 13:19:23      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:alt   script   viewport   onclick   charset   one   char   fun   rip   

使用JavaScript实现 栈和队列

技术图片
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        //封装一个栈
        function Stack(){
            this.arr = [];
            this.push = function(value){
                this.arr.push(value);
            };
            this.pop = function(){
                return this.arr.pop();
            };
        }

        //封装一个队列
        function Queue(){
            this.arr = [];
            this.push = function(value){
                this.arr.push(value);
            };
            this.pop = function(){
                return this.arr.shift();
            };
        }

        var s = new Stack();
        s.push(1);
        s.push(2);
        s.push(3);
        console.log(s.pop());

        var q = new Queue();
        q.push(1);
        q.push(2);
        q.push(3);
        console.log(q.pop());
    </script>
</body>
</html>
栈和队列.html

 

3.栈和队列的实现(JavaScript版)

标签:alt   script   viewport   onclick   charset   one   char   fun   rip   

原文地址:https://www.cnblogs.com/lanshanxiao/p/13181363.html

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