>  기사  >  백엔드 개발  >  C# 스택

C# 스택

黄舟
黄舟원래의
2016-12-27 14:27:431157검색

스택은 객체의 후입선출 컬렉션을 나타냅니다.

C# 스택

using System;
using System.Collections; 
namespace CollectionsApplication
{    
class Program    
{        
static void Main(string[] args)        
{            
Stack st = new Stack();            
 st.Push('A');            
 st.Push('M');            
 st.Push('G');            
 st.Push('W');                         
 Console.WriteLine("Current stack: ");           
 foreach (char c in st)            
 {                
 Console.Write(c + " ");           
  }            
  Console.WriteLine();                         
  st.Push('V');           
   st.Push('H');           
    Console.WriteLine("The next poppable value in stack: {0}",             
    st.Peek());           
     Console.WriteLine("Current stack: ");                      
      foreach (char c in st)           
       {               
       Console.Write(c + " ");           
        }           
         Console.WriteLine();             
         Console.WriteLine("Removing values ");            
         st.Pop();            
         st.Pop();            
         st.Pop();                         
         Console.WriteLine("Current stack: ");            
         foreach (char c in st)            
         {               
         Console.Write(c + " ");            
         }        
         }    
         }}

위 내용은 C#Stack 내용입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:C# 큐(큐)다음 기사:C# 큐(큐)