-1
votes
1answer
53 views

When does a heap become a full binary tree?

I know that heaps are always complete binary trees. But I was wondering when is a heap a full binary tree? Such as what conditions must the heap be in to always be a full binary tree?
0
votes
0answers
10 views

update heap when changing one element in O(lg(n))

I have a binary-heap and I want to update just an element. Is there any way to update without bubble up/bubble down?
0
votes
1answer
43 views

Adding an element to the first non-occupied leaf in a binary tree

Right now I'm trying to write a binary heap in Java implemented over a binary tree structure, and while I do have a very good grasp on how to "heapify" the tree after adding an element, the logic for ...
0
votes
0answers
131 views

How to print left subtree of Binary Heap?

I'm having trouble printing the left subtree of the root in a binary heap. I want to do it recursively but i don't think I am doing it correctly. Can someone point me in the right direction? template ...
3
votes
2answers
526 views

max heap and insertion

I have the an integer array of size 10. I need to draw the complete binary tree which I did. Now I need to insert the three other elements using siftup procedure. Show the max heap following each ...
0
votes
1answer
244 views

c++ data structures heaps

I've been trying to implement a heap into my program. It seems to me that heaps are the same as binary trees. Is this the case with all heaps such as min heap and max heap since all that is being done ...
1
vote
3answers
391 views

Algorithm to delete root element from min or max heap

I have read the algorithm to delete the root element of heap. 1. Swap the root element with last element of the heap. 2. Then heapify (shift down) from the root element downwards. At few other ...
1
vote
2answers
736 views

Size balanced binary tree heap in python

So I am working on some homework and I have to complete a size balanced binary tree heap implementation, and I'm having some trouble with my enqueue function. We were given some code to start with and ...
0
votes
1answer
217 views

Accessing memory outside of array, binary heap tree

For a class I was giving an assignment to take input from the command line and create a heap tree with the input. Numbers are read in from the command line. For example: Sample Input: ./Heapify ...
3
votes
2answers
1k views

Print a tree in sorted order using heap properties (Cormen)

I am refreshing on algorithm theory (from Cormen). There is an exercise in the chapter for binary tries that asks: Can the min-heap property be used to print out the keys of an n-node tree in ...
0
votes
2answers
255 views

Can we use binary search tree to simulate heap operation?

I was wondering if we can use a binary search tree to simulate heap operations (insert, find minimum, delete minimum), i.e., use a BST for doing the same job? Are there any kind of benefits for ...
0
votes
2answers
2k views

C++ priority queue as binary heap

have been making progress, but still can't figure out where my infinite loop is... header file: #include <string> class priority_queue_overflow{}; //if insert tries to exceed the size of A ...
3
votes
2answers
5k views

heap vs binary search tree

what is the difference between a heap and BST. When to use a heap and when to use a BST. If you want to get the elements in a sorted fashion is BST better over heap?
2
votes
5answers
1k views

Using arrow -> and dot . opporators together in C

I was under the impression that it was possible to access data from a sub-node of a linked list or similar structure by using the arrow and dot operators together like so: typedef struct a{ int num; ...
1
vote
2answers
2k views

Implementing a binary heap using a linked list [duplicate]

Possible Duplicate: Linked list implementation of Binary Min Heap (Having trouble with manipulation…) Greetings, I'm having trouble figuring out an algorithm that will give me the ...
1
vote
2answers
469 views

Heap sort algorithm

I have a heap made of a binary tree. Its not an array. I was wondering how would i go about sorting this. I know i need to take the last node and place it at the root and do a down heap bubble. This ...
14
votes
4answers
3k views

Convert a maximum heap to a binary search tree

We are given an array of 2m - 1 distinct, comparable elements, indexed starting from 1. We can view the array as a complete binary tree: Node is placed at index i. Left child is placed at 2i. Right ...
8
votes
5answers
1k views

Priority Queue with a find function - Fastest Implementation

I am looking at implementing a priority queue with an added requirement, a find/search function which will tell whether an item is anywhere within the queue. So the functions will be: insert, del-min ...
2
votes
2answers
967 views

Binary Heap vs (new) B-Heap: Should it be implemented in the CLR/.NET, and where?

The following article discusses an alternative heap structure that takes into consideration that most servers are virtualized and therefore most memory is paged to disk. ...
4
votes
6answers
5k views

Heaps vs. Binary Trees - How to implement?

when implementing a heap structure, we can store the data in an array such that the children of the node at position i are at position 2i and 2i+1. my question is, why dont we use an array to ...
5
votes
3answers
8k views

C++ Implementation of a Binary Heap

I need a min-heap implemented as a binary tree. Really fast access to the minimum node and insertion sort. Is there a good implementation in stl or boost that anyone can point me too?