美文网首页
使用数组模拟队列Scala

使用数组模拟队列Scala

作者: ShiPF | 来源:发表于2020-10-03 20:15 被阅读0次

这次使用数组模拟队列

基本思路是使用head 和tail的双指针,当添加时候 tail指针向后移动。弹出队列头的时候 head指针向后移动。两个指针范围内的值就是队列的内容

这次的队列有缺陷,就是无法重复利用已经被使用过的位置。下次我们使用数组模拟环形队列

代码

package cn.xipenhui.chapter1

import scala.io.StdIn

object ArrayQueueDemo {


  def main(args: Array[String]): Unit = {
    val queue = new ArrayQueue(3)

    //控制台输出的代码
    var key = ""
    while (true){
      println("show : 显示队列")
      println("exit 退出队列")
      println("add 添加元素")
      println("get 取出元素")
      println("head 查看队列头")

      key = StdIn.readLine()
      key match {
        case "show"=> queue.showQueue()
        case "add" =>{
          println("请输入一个数字")
          val num = StdIn.readInt()
          queue.addQueue(num)
        }
        case "get"=>{
          val res = queue.getQueue()
            println(s"取出的数据是${res}")
        }
        case "head" =>{
          val res = queue.showHeadQueue()

            println(s"头部的数据是${res}")

        }
        case "exit" => System.exit(0)
      }
    }
  }

}

/**
 * 创建一个队列需要有判断队列是否满,队列是否空,队列添加元素,
 * 初始化,弹出元素,查看队列内容,查看队列头
 *
 * 思路是:
 *   使用双指针,初始化为-1
 *   添加元素时候,先移动尾部指针,再复制
 *   弹出元素的时候,先移动指针,再弹出元素 因为 head指向的是当前头的前一位,需要移动到当前,再弹出
 */
class ArrayQueue(arrMaxSize:Int){

  val maxSize = arrMaxSize
  val arr = new Array[Int](maxSize)
  var head = -1
  var tail = -1

  def isFull():Boolean ={
    tail == maxSize -1
  }

  def isEmpty={
    head == tail
  }

  def addQueue(num:Int)={
    if(isFull()){
      throw  new RuntimeException("queue is full, cann't add element")
    }
    tail += 1
    arr(tail) = num
  }

  def getQueue() ={
    if(isEmpty){
      throw  new RuntimeException("queue is empty, cann't get element")
    }
    head += 1
    arr(head)
  }

  def showQueue(): Unit ={
    if(isEmpty){
      throw  new RuntimeException("queue is empty, cann't get element")
    }
    for (i <- head+1 to tail){
      println(s"arr(${i}) = ${arr(i)}")
    }
  }

  def showHeadQueue() ={
    if(isEmpty){
      throw  new RuntimeException("queue is empty, cann't get element")
    }
    arr(head+1)
  }
}

结束

相关文章

  • 使用数组模拟队列Scala

    这次使用数组模拟队列 基本思路是使用head 和tail的双指针,当添加时候 tail指针向后移动。弹出队列头的时...

  • HDUOJ-1026 Ignatius and the Prin

    解题思路 广搜 使用队列来模拟广搜 数组模拟队列 使用1维数组来模拟队列,head为当前队列头,tail-1为当前...

  • 数据结构之队列

    什么是队列 队列是一个有序列表, 可以用数组或链表实现 先入先出 使用数组模拟队列和环形队列 用数组模拟队列 思路...

  • javascript第七章

    栈和队列: js中没有专门的栈和队列类型,都是用普通该数组模拟的。 何时: 只要希望按照顺序使用数组元...

  • JavaScript⑦数组队列

    栈和队列: js中没有专门的栈和队列类型,都是用普通该数组模拟的。 何时: 只要希望按照顺序使用数组元素时 栈: ...

  • JS7

    栈和队列: js中没有专门的栈和队列类型,都是用普通该数组模拟的。 何时:只要希望按照顺序使用数组元素时 栈:一端...

  • javaScript数组练习等......

    栈和队列: js中没有专门的栈和队列类型,都是用普通该数组模拟的。 何时:只要希望按照顺序使用数组元素时 栈:一端...

  • 循环队列

    顺序存储实现循环队列 使用数组模拟环形结构,数组大小为MAXQSIZE front表示队头元素 rear表示队尾元...

  • 队列ADT

    /***************利用数组模拟循环队列***************/ #include "stdi...

  • JavaScript第七章

    栈和队列:js中没有专门的栈和队列类型,都是用普通该数组模拟的。何时:只要希望按照顺序使用数组元素时。栈:一段封闭...

网友评论

      本文标题:使用数组模拟队列Scala

      本文链接:https://www.haomeiwen.com/subject/exxvuktx.html