12.07.2015 Views

slides - Unisinos

slides - Unisinos

slides - Unisinos

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Heap (2)public boolean insert(int key) {if (currentSize == maxSize)return false;Node newNode = new Node(key);heapArray[currentSize] = newNode;heapfyUp(currentSize++);return true;} // end insert()82 70 51 63 55 37 10 43 27 30 34 950 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1724

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!