You are adding the following integers to a Min Heap: 5, 9, 8…

You are adding the following integers to a Min Heap: 5, 9, 8, 6, 3, 7 If you inserted the integers using the Heap rules, what would be the Level-order traversal of the heap?  Write your answer as a series of digits with no commas or spaces. Do not worry if Canvas automatically inserts a comma in your response. 

A Priority Queue is implemented with a Min Heap that has ins…

A Priority Queue is implemented with a Min Heap that has instance variables of an array to hold the data and an integer to store the current size.  What would be the algorithmic complexity of the following operations using this standard MinHeap?  peek   [blank1] add  [blank2] remove [blank3] isEmpty [blank4]