Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a full C++ Classes that implement a priority queue using single linked list. The class Node should include the following three attributes and
Write a full C++ Classes that implement a priority queue using single linked list. The class Node should include the following three attributes and functions: Integer data, pointer to next node and the priority of data as integer Constructor Assume lower values of priority indicate higher priority: means if priority=0 then this is the highest priority and the data should be at the head of linked list a. The class PriorityQueueAsLinkedList should include the following attributes and functions: > Linked list representation (head) > Constructor Destructor (remove the whole priority queue) pop()://Removes the element with the highest priority form the list peek()://retrieve the value of the highest priority push(data, priority): Function to push data to linked list according to priority Sample example: // Create a Priority Queue Priority Queue AsLinkedList pq: pq.push(4, 1); pq.push(5, 2); pq.push(6, 3); pq.push(7,0); //The resulted priority queue should be as follow: 7->4->5->6 cout
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started