📜  红宝石 |大小队列 deq()函数

📅  最后修改于: 2022-05-13 01:55:07.394000             🧑  作者: Mango

红宝石 |大小队列 deq()函数

deq()是 Ruby 中的一个内置函数,返回 SizedQueue 前面的元素并将其从 SizedQueue 中删除。

示例 1

#Ruby program for deq function in SizedQueue
  
#Create a new SizedQueue q1
q1 = SizedQueue.new(2)
  
#push 5
         q1.push(5)
  
#push 6
             q1.push(6)
  
#Prints the top - most element and also pops it
                 puts q1.deq
  
                     puts q1.deq

输出

5
6

示例 2

#Ruby program for deq function in SizedQueue
  
#Create a new SizedQueue q1
q1 = SizedQueue.new(2)
  
#push 12
         q1.push(12)
  
#push 21
             q1.push(21)
  
#Prints the top - most element and also pops it
                 puts q1.deq
  
                     puts q1.deq

输出

12
21

参考:https://devdocs.io/ruby~2.5/sizedqueue#method-i-deq