文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>队列Queue

队列Queue

时间:2011-05-06  来源:孤独的猫

     Queue对象类似于数据结构中的队列,先进先出(FIFO)。

    

/*
  Example11_10.cs illustrates the use of a Queue
*/

using System;
using System.Collections;

class Example11_10
{

  public static void Main()
  {

    // create a Queue object
    Queue myQueue = new Queue();

    // add elements to myQueue using the Enqueue() method
    myQueue.Enqueue("This");
    myQueue.Enqueue("is");
    myQueue.Enqueue("a");
    myQueue.Enqueue("test");

    // display the elements in myQueue
    foreach (string myString in myQueue)
    {
      Console.WriteLine("myString = " + myString);
    }

    // get the number of elements in myQueue using the
    // Count property
    int numElements = myQueue.Count;

    for (int count = 0; count < numElements; count++)
    {

      // examine an element in myQueue using Peek()
      Console.WriteLine("myQueue.Peek() = " +
        myQueue.Peek());

      // remove an element from myQueue using Dequeue()
      Console.WriteLine("myQueue.Dequeue() = " +
        myQueue.Dequeue());

    }

  }

}
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载