The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
38 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
35 views

Find the first null value in a breadth-wide search of a binary tree. (Java)

I'm trying to write a binary heap implemented over a binary tree, but I'm having trouble finding a way to add a new node to the "bottom" of the heap, i.e. the first null space on the tree in a ...
0
votes
1answer
38 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 ...
-2
votes
2answers
50 views

Overloading Operator most likely not working [closed]

Could you guys check out my function somethingWrong(), and my overloading operators. Sometimes when I run the function somethingwrong() I get "True" and sometimes "False". I am not changing anything, ...
0
votes
1answer
104 views

Complexity of binary heaps using linked lists

I am trying to compare the implementing a binary heap using an array and linked lists. I think arrays are better in every way because all operations can be done faster than or equal to the operations ...
0
votes
2answers
288 views

How to insert into a binary max heap implemented as a binary tree?

In a binary max heap implemented as a binary tree (where each node stores a pointer to its parent, left child, and right child), if you have the pointer to the root of the heap, how would you ...
3
votes
3answers
307 views

Why isn't the time complexity of building a binary heap by insertion O(n)?

The background According to Wikipedia and other sources I've found, building a binary heap of n elements by starting with an empty binary heap and inserting the n elements into it is O(n log n), ...
-6
votes
1answer
140 views

Building a heap principles- implementing in C++ [closed]

I am having some trouble with my homework. I was asked to implement a priority queue, using a heap in C++. While searching for code examples for creating a heap, I encountered many times in this ...
2
votes
1answer
115 views

Find top k visiting URL for last day, or last hour, or last minute?

The original question is given file containing 5GB URL being visited last day, find the top k frequent URL. The problem can be solved by using hash map to count the occurrences of distinct URL and ...
5
votes
1answer
171 views

Converting a heap to a BST in O(n) time?

I think that I know the answer and the minimum complexity is O(nlogn). But is there any way that I can make an binary search tree from a heap in O(n) complexity?
1
vote
2answers
120 views

Batch updating node priorities in a binary heap?

I posted quite confusing question, so I rewrote it from scratch... This is actually purely theoretical question. Say, we have binary heap. Let the heap be a MaxHeap, so root node has the biggest ...
2
votes
1answer
94 views

Smalltalk Program running out of memory; pass by reference issue?

So I'm working on a program which is supposed to 'heapify' integers that a user adds to a set, among other things. I'm having a problem right now, however, when I try to access the left child node of ...
0
votes
1answer
43 views

unresolved external symbol PriorityQueue [closed]

can anyone help me with this please. I am trying to build a priority queue but keep getting a unresolved external symbol error. Any help would be well appreciated. Error 2 error LNK2019: ...
-1
votes
2answers
115 views

Python: Using heap commands on a list of tuples

I'm trying to understand some of Python's built in heap functionality. It seems to not like things when I pass in a list of tuples (or more likely, I'm not passing the list in correctly). Here is what ...
2
votes
1answer
224 views

Does bottom up heap construction completely depend on the fact that (n+1) is a power of 2?

Doesn't bottom up heap construction completely depend on the fact that (n+1) is a power of 2? (where n is the number of nodes). For example consider the case n = 21. (n +1) is NOT a power of 2- how ...
0
votes
3answers
485 views

Priority Queue - Binary Heap

I'm trying to implement a priority queue as an sorted array backed minimum binary heap. I'm trying to get the update_key function to run in logarithmic time, but to do this I have to know the position ...
-4
votes
1answer
584 views

What is Heap Sorting and Priority Queue? [closed]

For my C++ Data Structure class, we are implementing a dial-up modem simulator. Our professor gave us a working source file that uses the STL priority queue, but our job is to replace that by ...
1
vote
2answers
2k views

Constructing Min/Max Binary Heap

Given an inorder-traversal list, what's the best way to create a Binary Min/Max Heap? I'm trying to confine with the following constructs: No array to be used in the binary-heap. Implementation is ...
7
votes
3answers
1k views

binary heap vs binomial heap vs fibonacci heap, regarding performance for a priority queue

Could someone please explain me how should I decide whether to use one or another heap implementation, among the ones mentioned in the title? I would like an answer to guide me on choosing the ...
2
votes
3answers
769 views

Asymptotic time complexity of inserting n elements to a binary heap already containing n elements

Suppose we have a binary heap of n elements and wish to insert n more elements(not necessarily one after other). What would be the total time required for this? I think it's theta (n logn) as one ...
6
votes
2answers
110 views

Is there a better way to calculate the frequency of all symbols in a file?

Okay, so, say I have a text file (not necessarily containing every possible symbol) and I'd like to calculate the frequency of each symbol and, after calculating the frequency, I then need to access ...
5
votes
2answers
776 views

Deletion in binary heap

I am just trying to learn binary heap and have a doubt regarding doing delete operation in binary heap. I have read that we can delete an element from binary heap and we need to reheapify it. But at ...
-4
votes
1answer
269 views

Writing a program that can handle a Heap that has K amount of children [closed]

I have researched binary Heaps and I am still very confused about what to do for this program If I could get some guidance I would really appreciate it I'm still learning java and having a lot of ...
2
votes
3answers
366 views

How to preserve the order of elements of the same priority in a priority queue implemented as binary heap?

I have created a binary heap, which represents a priority queue. It's just classical well known algorithm. This heap schedules a chronological sequence of different events ( the sort key is time ). ...
13
votes
3answers
2k views

How can std::make_heap be implemented while making at most 3N comparisons?

I looked in to the C++0x standard and found the requirement that make_heap should do no more than 3*N comparisons. I.e. heapify an unordered collection can be done in O(N) /* @brief Construct ...
4
votes
2answers
2k views

What is the difference between binary heaps and binomial heaps?

I need to know the main difference between binary and binomial heaps regardless of the their structure difference that binary heaps can have only two child (tree representation) and binomial heaps can ...
7
votes
1answer
5k views

How we can find kth largest element from a max-heap in O(k) time?

Consider a binary heap containing n numbers (the root stores the greatest number). You are given a positive integer k < n and a number x. You have to determine whether the kth largest element of ...
3
votes
3answers
851 views

Data Structures (Weiss Java book): Why allocate Comparable[] in BinaryHeap<T> array instead of T[]?

I'm taking a data structures course, and we're using Data Structures and Algorithm Analysis in Java 2nd Edition by Mark Weiss. In his BinaryHeap implementation, his constructor creates a Comparable[] ...
14
votes
3answers
3k views

Real world applications of Binary heaps and Fibonacci Heaps

What are the real world applications of Fibonacci heaps and binary heaps? It'd be great if you could share some instance when you used it to solve a problem. EDITED: Added binary heaps also. Curious ...
1
vote
1answer
331 views

Re-adjusting a binary heap after removing the minimum element

After removing the minimum element in a binary heap, i.e. after removing the root, I understand that the heap must be adjusted in order to maintain the heap property. But the preferred method for ...
1
vote
2answers
326 views

BubbleDown operation on binary min-heap does not work

I'm trying to extract the minimum from a binary heap but it's not working. Here's my BubbleDown code: void heapBubbleDown(Heap * const heap, int idx) { int min; while(RIGHT(idx) < ...
4
votes
1answer
776 views

Heap data structure

Trying to think of a lower bound to the position of say, the nth largest key in a max-heap. Assuming the heap's laid out in array. The upper bound's min(2^n-2, array size -1) i think, but is it always ...
1
vote
2answers
2k views

Min Binary Heap issue

i need help with this minheap code: #include < vector> using namespace std; class heap { vector <int> v; public: int hSize() { return v.size(); ...
6
votes
1answer
1k views

Merging two perfect binary heaps?

I've been stuck on a question for a while and was wondering if anyone can point me in the right direction: Suppose binary heaps are represented using a pointer-based tree representation instead of ...
28
votes
8answers
4k views

Efficient heaps in purely functional languages

As an exercise in Haskell, I'm trying to implement heapsort. The heap is usually implemented as an array in imperative languages, but this would be hugely inefficient in purely functional languages. ...
5
votes
2answers
5k views

Finding last element of a binary heap

quoting Wikipedia: It is perfectly acceptable to use a traditional binary tree data structure to implement a binary heap. There is an issue with finding the adjacent element on the last ...