红宝石 |大小队列 enq()函数
enq()是 Ruby 中的一个内置函数,将元素插入到 SizedQueue 中,直到它没有达到其最大容量。
Syntax: sq_name.enq(element)
Parameters: The function takes the element to be inserted into the SizedQueue.
Return Value: It inserts the element into the SizedQueue till it does not reaches its fixed capacity.
示例 1 :
#Ruby program for enq() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
#pushes 5
sq1.enq(5)
#pushes 6
sq1.enq(6)
#Prints the element
puts sq1.pop
puts sq1.pop
输出:
5
6
示例 2 :
#Ruby program for enq() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
#push 10
sq1.enq(10)
#push 12
sq1.enq(12)
#Prints the element
puts sq1.pop
#Again pushes 13
sq1.enq(13)
#Prints the element
puts sq1.pop
#Prints the element
puts sq1.pop
输出:
10
12
13
参考:https://devdocs.io/ruby~2.5/sizedqueue#method-i-enq