📜  红宝石 |队列 push()函数

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

红宝石 |队列 push()函数

push()是 Ruby 中的一个内置函数,用于将元素插入队列。

示例 1

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


Ruby
#Ruby program for push() function in Queue
 
#Create a new QUEUE q1
q1 = Queue.new
 
#push 10
     q1.push(10)
 
#push 12
         q1.push(12)
 
#Prints the element
             puts q1.pop
 
#Again pushes 13
                 q1.push(13)
 
#Prints the element
                     puts q1.pop
 
#Prints the element
                         puts q1.pop


输出

5
6

示例 2

红宝石

#Ruby program for push() function in Queue
 
#Create a new QUEUE q1
q1 = Queue.new
 
#push 10
     q1.push(10)
 
#push 12
         q1.push(12)
 
#Prints the element
             puts q1.pop
 
#Again pushes 13
                 q1.push(13)
 
#Prints the element
                     puts q1.pop
 
#Prints the element
                         puts q1.pop

输出

10
12
13

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