Sponsored Content
Top Forums Programming Help... runtime error in my maxheap sort program Post 302511214 by disaster on Wednesday 6th of April 2011 07:05:05 AM
Old 04-06-2011
Code:
#include<iostream>
using namespace std;
int *a,size,heapsize;
void maxheap(int *a,int j)
{
    int l,r,largest,temp;
    l=2*j;
    r=(2*j)+1;
    for(j=0;j<size;++j)
    {
        if(l<=heapsize && a[l]>a[j])
            largest=l;
        else
            largest=j;
        if(r<=heapsize && a[r]>a[largest])
            largest=r;
        if(largest!=j)
        {
            a[temp]=a[j];
            a[j]=a[largest];
            a[largest]=a[temp];
            maxheap(a,largest);
        }
    }    
}
void buildmax(int *a)
{
    heapsize=size;
    int n=size/2;
    for(int i=n;i>0;--i)
        maxheap(a,i);
}
void heapsort(int *a)
{
    int tempo;
    buildmax(a);
    for(int i=heapsize;i>0;--i)
    {
        a[tempo]=a[0];  
        a[0]=a[i];
        a[i]=a[tempo];
        --heapsize;
        maxheap(a,0);
    }
}
int main()
{
    cout<<"\nEnter the number of elements you want to enter in the array: ";
    cin>>size;
    int *a= new int [size];
    cout<<"\nEnter an array of elements: ";
    for(int i=0;i<size;++i)
        cin>>a[i];
    heapsort(a);
   /* cout<<"\nThe corresponding array is: ";
    for(int i=0;i<size;++i)
        cout<<a[i]; */
    buildmax(a);
    cout<<"\nThe sorted array is: ";
    for(int i=0;i<size;++i)
        cout<<a[i]<<"\t";
    return 0;
}

What do you consider "entering the array".
Anyways, in function heapsort you make use of an uninitialized int tempo, so I assume you will most likely have the error there
 

9 More Discussions You Might Find Interesting

1. Solaris

Runtime error...

My interprise use a UNIX mainform for a instrumentation process control. The control use the FOXBORO INVENSYS system and they donīt gonna solve the problem the run time error. The run time error happen without logic explication. When everything itīs run perfectely and happenly appears the run time... (1 Reply)
Discussion started by: marpin
1 Replies

2. UNIX for Dummies Questions & Answers

Runtime Error...

My system did stay appears the error Run Time Library Error. What itīs? When the error appear, iīve to reboot my system and lost all I did. Is there the UNIX System problem? Please. I need help!!! (4 Replies)
Discussion started by: marpin
4 Replies

3. Programming

Runtime error in C++ Program - Help

All, I am getting this when i try to ran a program in HP unix. Things i came across 1. i have a system HP-UNIX where this same exe is working. 2. We have set a new HP_UNIX with the same configration and copied the exe to the new system we are getting this error. 3. Only... (3 Replies)
Discussion started by: arunkumar_mca
3 Replies

4. Shell Programming and Scripting

How to give runtime arguments to different program

I have a shell script that is attempting to call a c program. I call the c program with ./dictool dictool accepts arguments at runtime. It works by prompting the user for various commands, acting on those commands, spitting out an output, and then prompting for more commands. My question is,... (1 Reply)
Discussion started by: aarongoldfein
1 Replies

5. Programming

Runtime error in my code...

INFIX TO POSTFIX CONVERSION : //Convert an infix expression to postfix expression... #include<iostream> #include<cstring> #include<cstdlib> using namespace std; char ifx,pfx,stk; int top=-1,n; void push(char ch) { if(top!=n-1) { top++; stk=ch; } ... (3 Replies)
Discussion started by: poonam.gaigole
3 Replies

6. UNIX for Dummies Questions & Answers

No Java runtime environment (JRE) error

Hi all, I am trying to install a .bin file for that it requires IBMJava2-AMD64-142-JRE-1.4.2-13.8.x86_64.rpm to be installed. I have installed this rpm but when i try to install .bin file, it complains that no JRE found. How to solve this. Thanks in advance! #... (0 Replies)
Discussion started by: lramsb4u
0 Replies

7. Programming

Fortran runtime error: Insufficient data descriptors in format after reversion

Hello, I have some Fortran code that is providing the following error: At line 1165 of lapc_shells_2.f Fortran runtime error: Insufficient data descriptors in format after reversion Here are the lines just above and including 1165: WRITE (*,"('ATTEMPTING TO READ PLATE... (1 Reply)
Discussion started by: jm4smtddd
1 Replies

8. Red Hat

Runtime Error Enable user directory apache

Hi I am exactly according to this link CentOS 6 - Apache httpd - Enable Userdir : Server World I Enabled userDirectory Server version: Apache/2.2.15 CentOS release 6.8 (Final) But Iget this Error Forbidden You don't have permission to access /~mn/index.html on this server Goal... (2 Replies)
Discussion started by: mnnn
2 Replies

9. Shell Programming and Scripting

Sending output of program into subsequent commands (i.e. awk/sort)

Hi, I have identified how to use command chaining as per below on a file, to capture the header of a file, as well as the line containing the C: drive. $ cat test.txt Filesystem Size Used Avail Use% Mounted on rootfs 237G 153G 84G 65% / none 237G 153G 84G ... (6 Replies)
Discussion started by: sand1234
6 Replies
scheme48(1)						      General Commands Manual						       scheme48(1)

NAME
scheme48 - a Scheme interpreter SYNOPSIS
scheme48 [-i image] [-h heapsize] [-a argument] DESCRIPTION
scheme48 is an implementation of the Scheme programming language as described in the Revised^5 Report on the Algorithmic Language Scheme. A runnable system requires two parts, an executable program that implements the Scheme 48 virtual machine, and an image that is used to initialize the store of the virtual machine. scheme48 is a shell script that starts the virtual machine with an image that runs in a Scheme command loop. The scheme48 command loop reads Scheme expressions, evaluates them, and prints their results. It also executes commands, which are identi- fied by an initial comma character. Type the command ,help to receive a list of available commands. The meaning of the -h option depends on the type of garbage collector that was chosen at configuration time. If heapsize is a positive number, it specifies the number of words that can be live at any given time. One word is four bytes. Cons cells are currently 3 words, so if you want to make sure you can allocate, say, a million cons cells, you should specify -h 3000000 (actually a little more, to account for the initial heap image and breathing room). If you specify a maximum smaller than the memory needed to load the image file, the maximum is increased accordingly and a message is writ- ten to the console. For the BIBOP garbage collector, heapsize may be 0. This means the heap will possibly keep growing until your system runs out of memory. Because of this risk, a warning message is written to the console if you specify -h 0. The ,dump and ,build commands put heap images in files. The -i option causes the initial heap image to be taken from file image. The -a option causes a list of strings to be passed as the argument to an image generated using the ,build command. The first argument to ,build is a procedure that is passed the arguments following -a and which should return an integer (which is the return value of the Scheme 48 process). > ,build (lambda (a) (display a) (newline) 0) foo.image > ,exit $ scheme48 -i foo.image -a mumble mumble $ FILES
/usr/lib/scheme48-1.`cat ./build/minor-version-number`/scheme48vm the virtual machine. /usr/lib/scheme48-1.`cat ./build/minor-version-number`/scheme48.image the default image. scheme48(1)
All times are GMT -4. The time now is 12:10 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy