Is MaxHeap available is Java?
I need a data structure in java which will take insertion time not more than O(lg n), deletion time not more than O(lg n) and access the maximum element not more than O(lg n), so I chose to go with MaxHeap, now I cant find any libraries which can help me.. or any good code for the same, that will also help - as i don't want to invent the wheel again. If there is any other datastructure predefined in JAVA meeting my need, then that could also be of great help to me.

