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 | 29 | 30 |
Tags
- 9375번
- pccp 기출문제 3번
- 연속 펄스 부분 수열의 합
- Ainimation Blending
- 플레이어 방향전환
- 유니티
- Back Tracking
- 백준 c++ 9375번
- Unity
- pccp 기출문제 2번
- pccp 기출문제 1번
- dfs
- 미로 탈출 명령어
- Hp바
- Algorithm
- LayerMark
- Blend Type
- CSharp #자료구조
- 양과 늑대
- Animation State Machine
- dp 알고리즘
- heap tree
- 충돌위험 찾기
- 플레이어 이동
- C#
- Lv2
- Lv.3
- 2D슈팅게임
- 프로그래머스
- 오브젝트 풀링
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