Final answer:
This is about implementing an adaptable and flexible priority queue using min- and max-heaps in Computer Science.
Step-by-step explanation:
The subject of this question is Computer Science, specifically the implementation of an adaptable and flexible priority queue (AFPQ) ADT using both min- and max-heaps.
A priority queue is an abstract data type that allows elements to be inserted and removed according to their priority. In a min-heap, the element with the smallest key is the root of the binary tree, while in a max-heap, the element with the largest key is the root. The implementation should use an extendable array to store the elements.
The AFPQ ADT should provide methods for inserting and removing elements from the priority queue, as well as modifying the key or value of an entry and toggling between min- and max-heap. The time complexities of the toggle(), remove(e), replaceKey(e, k), and replaceValue(e, v) operations should be efficient. The implementation should also include well-documented code with representative examples to demonstrate its functionality.