#includeusing namespace std; priority_queue pq;
// using push() method pq.push(10); pq.push(20); pq.push(30); // using emplace() method pq.emplace(40);
int highest = pq.top(); pq.pop();
// sorting elements in descending order priority_queuePriority queue is included in the, greater > pq;