Tagged Questions
The heapsort tag has no wiki summary.
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. ...
12
votes
7answers
293 views
An intuitive understanding of heapsort?
At school we are currently learning sorting algorithms in Java and I got for my homework the Heap Sort. I did my reading, I tried to find out as much as I could, but it seems I just can't grasp the ...
7
votes
2answers
549 views
Lower bound on heapsort?
It's well-known that the worst-case runtime for heapsort is Ω(n lg n), but I'm having trouble seeing why this is. In particular, the first step of heapsort (making a max-heap) takes time ...
6
votes
6answers
210 views
Why not use heap sort always
The Heap Sort sorting algorithm seems to have a worst case complexity of O(nlogn), and uses O(1) space for the sorting operation.
This seems better than most sorting algorithms. Then, why wouldn't ...
4
votes
4answers
288 views
Modifying a heap in O(lgn) time
I've been trying to figure this out for a couple days now. I have a problem for school that says the following:
Let A be a min-heap. The operation
HEAP-MODIFY(A, i, k) changes the key
in the ...
4
votes
5answers
2k views
Quicksort superiority over Heap Sort
Heap Sort has a worst case complexity is O(nlog) n wnile Quicksort is O(n^2).
But emperical evidences say quicksort is superior. Why is that??
3
votes
1answer
663 views
How to implement a minimum heap sort to find the kth smallest element?
I've been implementing selection sort problems for class and one of the assignments is to find the kth smallest element in the array using a minimum heap. I know the procedure is:
heapify the array
...
3
votes
3answers
263 views
Find all keys smaller than x in an array min-heap
Can some one describe an algorithm that finds all keys smaller than x in an array implementation of a min-heap.
I want the running time to be at least O(k) where k is the number of keys reported.
...
2
votes
1answer
327 views
Get heapsort to print in ascending order
This program takes an array of n length, and uses heapsort to pull the smallest k elements back out. I have gotten the k number smallest elements out of the array, but I have been trying for several ...
2
votes
2answers
157 views
OS X contains heapsort in stdlib.h which conflicts with heapsort in sort library
I'm using Ariel Faigon's sort library, found here:
http://www.yendor.com/programming/sort/
I was able to get all my code working on Linux, but unfortunately, when trying to compile with GCC on Mac, ...
2
votes
1answer
134 views
Heapsort and cache
According to wikipedia, heapsort runs more quickly on computers with small or slow data caches. How could having a slow data cache improve performance ?
2
votes
1answer
228 views
1-ary heap sort?
A while back we were given an assignment to write a c program that sorts an array of n numbers using a d-ary max-heap (a heap where each node has up to d children). The program needed to ask the user ...
2
votes
3answers
698 views
C# heapSort ,System.Timers; to check algorithm time
I have to check HeapSort algorithm time in C# , my problem is that I Know I must use System.Timers , because I don't know how to measures the algorithm time.
I have to check the algorithm time for ...
1
vote
3answers
46 views
What sorting algorithm delivers one page of results the fastest? (partial result set)
I have a "large" dataset where I need to display the first or last 10 rows of data and allow the sort operation to operate in the background as the user views the first page of results.
Edit: ...
1
vote
4answers
91 views
Calculating time complexity in case of recursion algorithms?
How do you calculate time complexity in case of recursion algorithms?
for eg t(n) = t(3n/2) + 0(1) (Heapsort)
1
vote
1answer
99 views
C++ heapsort confusion
This might be a weird question but I'm trying to figure out why the following code works.
It seems as though this code should be used where the heap elements index starts at 1 but it's starting at 0 ...
1
vote
1answer
343 views
max heapify algorithm from Cormen with zero-indexing
I am trying to implement max heapify algorithm given in Algorithms Book here
The algo in book is
MAX-HEAPIFY(A,i)
1 l<-LEFT(i)
2 r<-RIGHT(i)
3 if l<=heap-size[A] and A[l]>A[i]
4 ...
1
vote
2answers
222 views
Errors in heapsort algorithm code in Skiena's Algorithm Design Manual?
Aren't algorithms in 4.3.2 and 4.3.3 of broken? bubble_down goes out of bounds, and q->q isn't assigned in pq_init.
Consequently, heapsort function can't be an in-place sort, while there's no ...
1
vote
1answer
177 views
Decending Order Heap Sort
I've been trying to learn how to implement a heapsort.
In particular, I have a heapsort algorithm which sorts the input in acending order,
but i can't figure out what needs to be changed to make it ...
1
vote
2answers
460 views
c++ sift down heap
I am writing a program that requires me to use a heap, and everything runs fine besides my sorting methods, obviously quite important! I am not sure what is wrong with my logic or if I am missing ...
1
vote
3answers
273 views
c generic heapsort
Okay so I need to create a 'generic' heapsort in c and this is what I have so far
(I might be missing some closing brackets in code but they just got lost when I moved my code here)
void srtheap(void ...
1
vote
1answer
330 views
Heapsort in descending order not working
I have been looking at this for hours and can't figure this out. If the comparisons in the heapify function are changed to greater than, then the output is in increasing order as it should be. I want ...
1
vote
4answers
2k views
Quicksort vs heapsort
Both quicksort and heapsort do in-place sorting. Which is better? What are the applications and cases in which either is preferred?
1
vote
2answers
395 views
Heap Sorting Algorithm
I need the algorithm of HeapSort for sorting the elements of the array, such that all the elements of the array i.e [19 18 14 15 5 7 13 3 8] are in non-decreasing order.
0
votes
2answers
43 views
Max-heap Ordering
If A [1 .. n] is a max-heap, where may be the second, the third , the fourth... largest elements of the array?
[1]
[2] [3]
[4] [5] [6] [7]
0
votes
1answer
58 views
Heap sort is outfoxing me
I'm trying to implement a array based Heap Sort, its sorting the first few but not fully and I can't figure out why. Here is what I'm working with:
public class HeapSort{
static int[] numbers = ...
0
votes
2answers
112 views
Getting Segmentation Fault with string Heap Sort code in C++
int heapSize = 20; //variable
int left(int i) {
return (2 * i) + 1;
}
int right(int i) {
return (2 * i) + 2;
}
void heapify(string arr[], int i) {
int l = left(i);
int great=0;
int r = right(i);
if ...
0
votes
3answers
85 views
Why does this C implementation of heapsort give segmentation fault? [closed]
I tried executing this code in gcc as well as turboc. In GCC it gives me a segmentation fault error at run time and in turbo it gives a null pointer assignment error again at run time.
I tried ...
0
votes
1answer
54 views
Heap Book Box Packing
I am attempting to write a program that reads in an order of books, stores them in a heap and implements a greedy algorithm to pack the books into boxes efficiently based on weight;
I am having ...
0
votes
1answer
104 views
Forming Heap Using array
I am trying to form a heap using the following code ,But not sure why its not showing the correct output.
#include <iostream>
using namespace std;
int h[10], n;
void heapbottom()
{
...
0
votes
1answer
42 views
Heapsort swap using Insertion Sort?
Is it possible to use insertion sort in a heapsort to replace its swap or exchange method?
Typically swap requres 3 steps at minimum:
temp = a
a = b
b = temp
A friend of mine said that it's ...
0
votes
3answers
177 views
heapsort implementation in c++
i have following code for heapsort
#include <iostream>
using namespace std;
void exch(int a[],int i,int j){
int s=a[i];
a[i]=a[j];
a[j]=s;
}
void sink(int a[],int ...
0
votes
0answers
33 views
A method of testing the performance of heapsort and quicksort on large natural data set
I have to think of a method of testing the performance of my heapsort and quicksort on large natural data set.
Thinks to keep in mind:
1) If you are reading data from files the reading time must be ...
0
votes
1answer
105 views
Heapsort running time when input in Decreasing order sorted
What is the running time of heap sort when the input is already in reverse sorted.
Could anyone please explain? I'm confused..
0
votes
2answers
193 views
Trouble creating a descending heap sort in C
void heapSort(int list[], int last)
{
// Local Declarations
int sorted;
int holdData;
int walker;
// Statements
for (walker = 1; walker <= last; walker++)
...
0
votes
1answer
344 views
Insertion Sort / Heap Sort time complexity
Assume you have to sort an array with n = 1,000,000 elements. How long would insert sort and heapsort roughly need assuming each basic step takes one milli-second?
I know that insert sort takes n^2 ...
0
votes
1answer
148 views
Heapsort in C, index 0 issue
for a project for school I have decided to solve a problem by coding a HeapSort but I have an issue. ("vector" is the vector to sort and "n" is the number of elements in "vector")
Here is my code :
...
0
votes
0answers
161 views
Why is my upheap and downheap sort not working?
Ok so my program is to write a C++ program to sort items in several input files, using the heapsort technique. For each input file, your program first reads the items from the input file and builds a ...
0
votes
2answers
266 views
make_heap not making heaps
I have a program that heapsorts a subset of another vector in a vector, as references to indices.
std::vector<foo> knowledgeBase;
std::vector<int> workingSet;
Does this comparison class ...
0
votes
1answer
490 views
Trying to implement HeapSort
I am getting stuck on heapSort. I have some code but I think its pretty wrong since I'm having hard time compiling it. Any suggestions? Heap sort should be fairly easy to implement but I have bunch of ...
0
votes
1answer
185 views
Heapsort question
As a heap is a combination of a binary tree and array, when sorting does the entire heap keep the form of a complete tree?
For a homework assignment, I have to trace out the heap and array for each ...
0
votes
1answer
251 views
C# heapSort , 1 error
I have one error in my program , I dont know why this error appears in 63 Line.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HeapSort
{
class ...
0
votes
1answer
634 views
descending heap sort
use heap sort to sort this in descending order and show the steps or explanation please
below is the tree
79
33 57
8 ...
-1
votes
1answer
171 views
PostgreSQL: How to force db use the “quicksort” sorting method instead of “top-N heapsort”?
Actually, all my question is written in subj-field. It's it somehow possible in PostgreSQL? Probably at server-config level, or can be configured in query, or in properties of table?
I hardly tried to ...