c# 队列和堆栈
标签:一个 fir push 个数 new 返回值 ring pop str
队列,先进先出
Queue q = new Queue();
q.Enqueue("A");
q.Enqueue("B");
q.Enqueue("C");
Console.WriteLine(q.Dequeue()); //移除第一个并返回第一个元素的值:A
Console.WriteLine(q.Count); //返回总数量:2
Console.WriteLine(q.FirstOrDefault()); //返回第一个元素:B
Console.WriteLine(q.LastOrDefault()); //返回最后一个元素:C
堆栈,先进后出
Stack st = new Stack();
st.Push("A");
st.Push("B");
st.Push("C");
Console.WriteLine(st.Pop()); //移除最后一个元素并返回值:C
Console.WriteLine(st.Count); //返回元素个数:2
c# 队列和堆栈
标签:一个 fir push 个数 new 返回值 ring pop str
原文地址:https://www.cnblogs.com/trykle/p/14458814.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
c# 队列和堆栈
文章链接:http://soscw.com/index.php/essay/86281.html
评论