红宝石 |大小队列 max()函数
max()是 Ruby 中的一个内置函数,返回 SizedQueue 的最大大小。它返回初始化队列时使用的大小。
Syntax: sq_name.max()
Parameters: The function does not takes any parameter.
Return Value: It returns the size of the SizedQueue.
示例 1 :
#Ruby program for max() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(3)
#pushes 5
sq1.enq(5)
#pushes 6
sq1.enq(6)
#Prints the max size
puts sq1.max
#Pops the element
sq1.pop
#Prints the max size
puts sq1.max
输出:
3
3
示例 2 :
#Ruby program for max() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(6)
#pushes 5
sq1.enq(5)
#pushes 6
sq1.enq(6)
#pushes 7
sq1.enq(7)
#Prints the length
puts sq1.max
#Pops the element
sq1.pop
#Prints the length
puts sq1.max
输出:
6
6
参考:https://devdocs.io/ruby~2.5/sizedqueue#method-i-max