Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

d-Heap Arithmetic Binary heaps implemented using an array have the nice property of finding children and parents of a node using only multiplication and division

d-Heap Arithmetic

Binary heaps implemented using an array have the nice property of finding children and parents of a node using only multiplication and division by 2 and incrementing by 1. This arithmetic is often very fast on most computers, especially the multiplication and division by 2 since these correspond to simple bitshift operations. In d-heaps, the arithmetic is also fairly straightforward, but is no longer necessarily as fast. In this problem you will figure out how the arithmetic works in those heaps.

a) We will begin with considering a 3-heap (a heap where each node has <= 3 children. If a 3-heap is stored as an array, for an entry located at index i, what are the indices of its parent and its children? You may find it convenient to place the root at index 0 instead of 1 to simplify calculations (be sure to specify if you make this change). Hint: the solution should be very concise. If it is becoming complicated, you might want to rethink your approach.

b) Generalize your solution from (a) to work for d-heaps in general. If a d-heap is stored as an array, for an entry located at index i, what are the indices of its parent and its children?

c) For what values of d will these operations be implementable with bit shifts instead of divisions and multiplications?

d) If a d-heap has height h, what is the maximum number of nodes that it can contain? What is the minimum? (again, give an exact expression, NOT something in big-O or theta etc.) SHOW how you came up with your answer.

e) If a d-heap has n nodes, what will its height be? (give an exact expression, not something in big O or theta etc.) SHOW how you came up with your answer.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Principles Programming And Performance

Authors: Patrick O'Neil, Elizabeth O'Neil

2nd Edition

1558605800, 978-1558605800

More Books

Students also viewed these Databases questions

Question

1. What might have led to the misinformation?

Answered: 1 week ago

Question

2. How will you handle the situation?

Answered: 1 week ago

Question

3. Write a policy statement to address these issues.

Answered: 1 week ago