Introduction - If you have any usage issues, please Google them yourself
create a max heap class that is based on a complete ternary tree. As with a complete binary tree max heap, the
largest value is at the root and the root is at location 1 in the vector holding the heap. Location 0 is
unused.1)insert2)delete3)build