📜  红宝石 |大小队列 max()函数

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

红宝石 |大小队列 max()函数

max()是 Ruby 中的一个内置函数,返回 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