红宝石 | SizeQueue shift()函数
shift()是 Ruby 中的一个内置函数,返回 SizedQueue 前面的元素并将其从 SizedQueue 中删除。
Syntax: sq_name.shift()
Parameters: The function does not takes any element.
Return Value: It returns the first element which is at the front of the SizedQueue and removes it from the SizedQueue.
示例 1 :
#Ruby program for shift() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
#push 5
sq1.push(5)
#push 6
sq1.push(6)
#Prints the top - most element and also shifts it
puts sq1.shift
puts q1.shift
输出:
5
6
示例 2 :
#Ruby program for shift function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
#push 12
sq1.push(12)
#push 21
sq1.push(21)
#Prints the top - most element and also shifts it
puts sq1.shift
puts sq1.shift
输出:
12
21
参考:https://devdocs.io/ruby~2.5/SizedQueue#method-i-shift