거의 알고리즘 일기장

c#에서의 queue의 push, pop, front 본문

c# 문법

c#에서의 queue의 push, pop, front

건우권 2020. 5. 11. 16:26
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization.Formatters.Binary;
using System.Threading;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            Queue<int> q = new Queue<int>();
            q.Enqueue(100);	//push
            q.Enqueue(120);
            q.Enqueue(130);
            q.Peek(); // front
            int next = q.Dequeue();//100 // pop 개꿀인게 return형이 있어 c++보다 편함
            next = q.Dequeue();//120
        }
    }
}
반응형

'c# 문법' 카테고리의 다른 글

문자열 위치찾기  (0) 2020.05.12
박싱과 언박싱 예제  (0) 2020.05.11
class를 이용한 간단 예제 2개  (0) 2020.05.11
기본 입출력  (0) 2020.05.11
c#관련 기본 용어 & 기본사항  (0) 2020.04.21
Comments