Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Beakjoon
- 백준 1103번
- 백준 1103번 게임
- 수학숙제
- 백준 1103번 c++
- 유니티
- 2468 c++
- 플레이어 이동
- 2870번
- 코테
- 백준 c++ 2870번
- 2870번 수학숙제
- Lv2
- 백준 17070번 c++
- Unity
- 오브젝트 풀링
- Algorithm
- 백준 2870번
- Lv.3
- 백준 17070번
- 프로그래머스
- 백준
- C#
- 코딩테스트
- dfs
- 2870번 수학숙제 c++
- 2870번 c++
- 17070번
- 백준 c++ 2468번
- c++
Archives
- Today
- Total
목록heap tree (1)
주녘공부일지
[C# Reference] 우선순위 큐 ( Priority Queue ) + Heap
DataClass PriorityQueue // 데이터 추가해서 사용 public class DataClass { public int cost; public DataClass(int cost) { this.cost = cost; } } // DataClass의 cost를 기준으로 가장 작은 값을 우선으로 두는 우선순위 큐 public class PriorityQueue { private List heap = new List(); public int Count => heap.Count; public void Enqueue(DataClass data) ..
Programming/Definition, Etc
2024. 2. 2. 16:12