当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Queue push()用法及代码示例


pus()是Ruby中的内置函数,可将元素插入队列。

用法:q_name.push(element)

参数:该函数采用要插入队列的元素。


返回值:将元素插入队列。

例子1

#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

输出

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



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Queue push() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。