Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
7answers
2k 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. ...
7
votes
2answers
243 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 ...
7
votes
1answer
2k 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 ...
5
votes
2answers
72 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 ...
4
votes
1answer
550 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 ...
4
votes
2answers
3k 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 ...
3
votes
3answers
362 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[] ...
2
votes
1answer
94 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 ...
2
votes
3answers
102 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 ). ...
1
vote
2answers
99 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 ...
1
vote
2answers
55 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 ...
1
vote
0answers
178 views

What is the difference between binary heaps and bionomial 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 ...
1
vote
1answer
155 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
205 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) < ...
1
vote
2answers
758 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(); ...
-4
votes
1answer
84 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 ...