관리 메뉴

Kim's Programming

Priority Queue - Operator '=' 본문

STL - Container/Container - Priority Queue

Priority Queue - Operator '='

Programmer. 2016. 1. 30. 16:42

소스)


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
#include<queue>
#include<iostream>
 
void print(std::priority_queue<int> Target_Queue)
{
    while (!Target_Queue.empty())
    {
        std::cout << Target_Queue.top() << " ";
        Target_Queue.pop();
    }
    std::cout << std::endl;
}
 
void main()
{
    int Array[] = { 1,2,3,4,5,6,};
    int Array2[] = { 4,3,2,};
    std::priority_queue<int> pQueue(Array, Array + 7);
    std::priority_queue<int> pQueue2(Array2, Array2 + 4);
 
    print(pQueue);
    print(pQueue2);
    pQueue = pQueue2;
    print(pQueue);
    print(pQueue2);
}
cs


내용)


연산자 = 는 데이터들을 복사합니다. x=y인 경우 priority_queue x에 priority_y의 데이터를 복사합니다. 기존의 priority_queue x의 데이터는 삭제됩니다.


결과)




'STL - Container > Container - Priority Queue' 카테고리의 다른 글

Priority Queue - push()  (0) 2016.01.30
Priority Queue - pop()  (0) 2016.01.30
Priority Queue - empty()  (0) 2016.01.30
Priority Queue - emplace()  (0) 2016.01.30
Priority Queue - 멤버변수  (0) 2016.01.30