码迷,mamicode.com
首页 > 其他好文 > 详细

数据结构_队列

时间:2020-02-18 13:17:30      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:empty   items   清空   div   return   长度   clear   length   tor   

//队列,先进先出

  class Queue {
    constructor () {
      this.items = []
    }
    //入队
    enqueue (elem) {
      return this.items.push(this.items)
    }
    //出队
    dequeue () {
      return this.items.shift()
    }
    //查看队首元素
    front () {
      return this.items[0]
    }
    //是否为空
    isEmpty () {
      return this.items.length <= 0
    }
    //清空队列
    clear () {
      this.items = []
      return true
    }
    //队列长度
    size () {
      return this.items.length
    }
  }

 

数据结构_队列

标签:empty   items   清空   div   return   长度   clear   length   tor   

原文地址:https://www.cnblogs.com/JunLan/p/12325499.html

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