[[TableOfContents]] = 계획 = * Priority_Queue * Heap * Heap 구현 * STL에서 Priority_Queue 사용 * Heap Sort = 참여자 = ||강사 || [권영기] || ||<|10> 참여자|| [권준혁] || || [이지수] || || [김정민] || || [유재범] || || [성훈] || || [] || || [] || = 내용 = == Priority Queue == * In computer science/data structures, a priority queue is an abstract data type which is like a regular queue or stack data structure, but where additionally each element has a "priority" associated with it. In a priority queue, an element with high priority is served before an element with low priority. If two elements have the same priority, they are served according to their order in the queue. * While priority queues are often implemented with heaps, they are conceptually distinct from heaps. A priority queue is an abstract concept like "a list" or "a map"; just as a list can be implemented with a linked list or an array, a priority queue can be implemented with a heap or a variety of other methods such as an unordered array. * 출처 : [http://en.wikipedia.org/wiki/Priority_queue] == Priority Queue in STL == {{{ #include #include #include #include using namespace std; priority_queue pq; int v[100]; int main(void) { int n = 10; srand(time(NULL)); printf("Vector \n"); for(int i = 0; i