数据结构_队列

Posted junlan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构_队列相关的知识,希望对你有一定的参考价值。

//队列,先进先出

  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
    }
  }

 

以上是关于数据结构_队列的主要内容,如果未能解决你的问题,请参考以下文章

perl中的队列

如何将列表视图中的数据从一个片段发送到另一个片段

数据存储_FMDB数据库队列

这些 C++ 代码片段有啥作用?

[AndroidStudio]_[初级]_[配置自动完成的代码片段]

在Python中保存队列数据