티스토리 뷰
using System;
using System.Collections;
using System.Collections.Generic;
namespace tutoring
{
class MyStack {
static void Main(string[] args)
{
Stack stack = new Stack();
stack.Push(1);
stack.Push(2);
stack.Push(3);
stack.Push(4);
stack.Push(5);
Console.WriteLine("stack.Count: {0}", stack.Count);
Console.WriteLine();
while (stack.Count > 0)
Console.WriteLine(stack.Pop());
Console.WriteLine();
Console.WriteLine("stack.Count: {0}", stack.Count);
}
}
}
'Algorithm' 카테고리의 다른 글
[Algorithm] 가장 중요한 5가지 정렬 - selection, insertion, bubble, merge, quick sort (0) | 2021.11.22 |
---|---|
[Algorithm][WIP] 중국인의 나머지 정리 (Chinese Remainder Theorem) (0) | 2021.11.10 |
[C#] Queue 구현하기 (0) | 2021.08.04 |
[C#] 프로젝트 생성하기 (0) | 2021.08.04 |
백준에서 알려준 자주 틀리는 요인 (0) | 2021.01.12 |