📜  红宝石 |队列长度()函数

📅  最后修改于: 2022-05-13 01:54:39.890000             🧑  作者: Mango

红宝石 |队列长度()函数

length()是 Ruby 中的一个内置函数,它返回队列的当前长度或其中存在的对象数。

示例 1

#Ruby program for length() function in Queue
  
#Create a new QUEUE q1
q1 = Queue.new
  
#pushes 5
     q1.enq(5)
  
#pushes 6
         q1.enq(6)
  
#Prints the length
             puts q1.length
  
#Pops the element
                 q1.pop
  
#Prints the length
                     puts q1.length

输出

2
1

示例 2

#Ruby program for length() function in Queue
  
#Create a new QUEUE q1
q1 = Queue.new
  
#Prints the length
     puts q1.length
  
#pushes 5
         q1.enq(5)
  
#pushes 6
             q1.enq(6)
  
#pushes 7
                 q1.enq(7)
  
#Prints the length
                     puts q1.length
  
#Pops the element
                         q1.pop
  
#Prints the length
                             puts q1.length

输出

0
3
2

参考:https://devdocs.io/ruby~2.5/queue#method-i-length