Ruby 队列 size()函数
size() 是Ruby中的一个内置函数,用于返回队列的当前大小或其中存在的对象数量。
语法 : q_name.size()
参数 :该函数不需要任何参数。
返回值 :它返回队列中元素的数量。
例子 1 :
#Ruby program for size() function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#pushes 5
q1.enq(5)
#pushes 6
q1.enq(6)
#Prints the size
puts q1.size
#Pops the element
q1.pop
#Prints the size
puts q1.size
输出:
2
1
例2 :
#Ruby program for size() function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#Prints the size
puts q1.size
#pushes 5
q1.enq(5)
#pushes 6
q1.enq(6)
#pushes 7
q1.enq(7)
#Prints the size
puts q1.size
#Pops the element
q1.pop
#Prints the size
puts q1.size
输出:
0
3
2
参考资料 : https://devdocs.io/ruby~2.5/queue#method-i-size