红宝石 |大小队列 push()函数
push()是 Ruby 中的一个内置函数,用于在 SizedQueue 中插入元素。
Syntax: sq_name.push(element)
Parameters: The function takes the element to be inserted into the SizedQueue.
Return Value: It inserts the element into the SizedQueue.
示例 1 :
#Ruby program for push() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
#push 5
sq1.push(5)
#push 6
sq1.push(6)
#Prints the element
puts sq1.pop
puts sq1.pop
输出:
5
6
示例 2 :
#Ruby program for push() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
#push 10
sq1.push(10)
#push 12
sq1.push(12)
#Prints the element
puts sq1.pop
#Again pushes 13
sq1.push(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-push