Ruby 队列 enq() 函数

Ruby 队列 enq() 函数

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

语法 :q_name.enq(element)

参数 :该函数接收要插入队列中的元素。

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

例子 1 :

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

输出:

5
6

例2 :

#Ruby program for enq() function in Queue
  
#Create a new QUEUE q1
q1 = Queue.new
  
#push 10
     q1.enq(10)
  
#push 12
         q1.enq(12)
  
#Prints the element
             puts q1.pop
  
#Again pushes 13
                 q1.enq(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-enq

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程