[백준 11279번] 최대 힙
https://www.acmicpc.net/problem/11279 11279번: 최대 힙 첫째 줄에 연산의 개수 N(1≤N≤100,000)이 주어진다. 다음 N개의 줄에는 연산에 대한 정보를 나타내는 정수 x가 주어진다. 만약 x가 자연수라면 배열에 x라는 값을 넣는(추가하는) 연산이고, x가 0이� www.acmicpc.net heap 자료구조를 이해하고 maxheap을 위한 insertion과 deletion을 구현하였다. #include #include #include using namespace std; #define MAX_LEN 100001 int heap[MAX_LEN]; int answer[MAX_LEN]; int hidx = 0; int aidx = 0; void insertNode(i..
2020.05.28