Question

In: Computer Science

Implementation of Quick sort and heap sorting algorithms in C++ FULL PROGRAMM BOTH THE QUICK SORT...

Implementation of Quick sort and heap sorting algorithms in C++

FULL PROGRAMM

BOTH THE QUICK SORT AND HEAP SORT IN THE SAME PROGRAMM

Solutions

Expert Solution

Implementation of Quick sort and heap sorting algorithms in C++--->

#include <iostream>
#define ll long long
using namespace std;
void swap(int *x, int *y) 
{ 
        int* t; 
        t=x; 
        x=y; 
        y=t; 
} 
int part(int *A,int start,int end) 
{ 
    /* function  to partition array and return true position of
    pivot element in array*/
        int pivot,pindex,i; 
         
        pivot=A[end]; 
        pindex=start; 
         
        for(i=start;i<end;i++) 
        { 
                if(A[i]<=pivot) 
                {        
                        swap(A[i],A[pindex]); 
                        pindex++; 
                } 
        } 
         
        swap(A[pindex],A[end]); 
         
        return pindex; 
} 

void quicksort(int *A,int start,int end) //complexity nlogn average case n^2 in worst case
{ 
        if(start<end) 
        { 
       /* pindex is partitioning index*/
                int pindex=part(A,start,end); 
                quicksort(A,start,pindex-1);  //recursive calling left
                quicksort(A,pindex+1,end); //recursive calling right
    }
}
void MaxHeap(int A[],int i,int n) //code to heapify or create maxheap
{ 
        int large=i; // initialize large with root index
        int lf=2*i; 
        int rf=2*i+1; 
        if(lf<n && A[lf]>A[large]) //if left child value > root value
                large=lf; 
        if(rf<n && A[rf]>A[large]) //if right child value > root value
                large=rf; 

        if(i!=large) 
        { 
                int s=A[large]; 
                A[large]=A[i]; 
                A[i]=s; 
        /*recursively heapify*/
                MaxHeap(A,large,n); 
        } 
} 

void heapSort(int arr[], int n) //complexity O(nlogn)
{ 
        int i; 
    /*creating heap*/
        for (i = n / 2 - 1; i >= 0; i--) 
                MaxHeap(arr,i,n);   
        for (i=n-1; i>=0; i--) 
        {   
        /* in each iteration 1 element is extracted*/
                int s=arr[0]; 
                arr[0]= arr[i]; 
                arr[i]=s;   
                MaxHeap(arr,0,i); 
        } 
} 

int main()
{
    /** taking input of size and sorting using quicksort*/
    int n;
    cin>>n;
   int a[n];
   for(int i=0;i<n;i++)
   cin>>a[i];
   quicksort(a,0,n-1);
   for(int i=0;i<n;i++)
   cout<<a[i]<<" ";

/*sort using heapsort*/
   int m;
   cin>>m;
   int b[m];
   for(int i=0;i<m;i++)
   cin>>b[i];
   heapSort(b,m);
   for(int i=0;i<m;i++)
   cout<<b[i]<<" ";
}

output


Related Solutions

Implementation of Quick sort and heap sorting algorithms in C++ FULL PROGRAMM BOTH THE QUICK SORT...
Implementation of Quick sort and heap sorting algorithms in C++ FULL PROGRAMM BOTH THE QUICK SORT AND HEAP SORT IN THE SAME PROGRAM PS: YOU ARE ANSEWRING THE SAME PROGRAMS I WANT DIFFERENT ONE PLEASE , THANK YOU . BECAUSE THE ONE WERE POSTING DOESNT WORKING !!
Implementation of Quick sort and heap sorting algorithms in C++
Implementation of Quick sort and heap sorting algorithms in C++
Implementation of Quick sort and heap sorting algorithms in C++
Implementation of Quick sort and heap sorting algorithms in C++
Which of the following sorting algorithms are stable: insertion sort, selection sort, merge sort and quick...
Which of the following sorting algorithms are stable: insertion sort, selection sort, merge sort and quick sort? Give a simple scheme that makes any sorting algorithm stable. How much additional time and space does your scheme entail?
Comparing (Sort Algorithms) Both of the two sorting algorithms will do "sort" on arrays which would...
Comparing (Sort Algorithms) Both of the two sorting algorithms will do "sort" on arrays which would contain x randomly generated integers where the value of x would be 10000, 20000, 40000 and 80000 (inputs). The parts of the program should be followed as..... 1. Set x = 10000, randomly generate x integers. Call qsort function to sort these integers and get the execution time. 2. Randomly generate another x integers. Call your own sorting algorithm and get the execution time....
Which sorting algorithms is most efficient to sort string consisting of ASCII characters? Heap sort, Merge...
Which sorting algorithms is most efficient to sort string consisting of ASCII characters? Heap sort, Merge sort, insertion sort, bubble sort, selection sort or quick sort?
C++ Question- Write function templates for 5 sort algorithms: - Quick Sort Apply these algorithms to...
C++ Question- Write function templates for 5 sort algorithms: - Quick Sort Apply these algorithms to 10 different arrays of integers. Each array has 100 integer elements. The arrays are filled with random integer numbers.
In Python, there are different sorting algorithms. Selection Sort, Bubble Sort and Insertion Sort. • Write...
In Python, there are different sorting algorithms. Selection Sort, Bubble Sort and Insertion Sort. • Write a Pseudo code first for each of these sort methods.   • After writing the pseudo code write python code from the pseudo code. • Upload the pseudo code and Python code for each of the three algorithm mentioned.
c++ Run the following sorting algorithms: 1. Bubble sort 2. Insertion sort 3. Quicksort 4. Mergesort...
c++ Run the following sorting algorithms: 1. Bubble sort 2. Insertion sort 3. Quicksort 4. Mergesort Under the following scenarios for input data: 1. Uniform random 2. Almost sorted (90% sorted – 1 in 10 is out of place) 3. Reverse sorted On data of sizes 5,000, 10,000, … in increments of 5,000 up to …, 50,000 -Attach a screenshot of a program compilation below -Attach a screenshot of a successful program run below -Attach a graph (either line graph...
Implement Heap Sort and Quick Sort in different programs with the following specifications: 1. The input...
Implement Heap Sort and Quick Sort in different programs with the following specifications: 1. The input to the programs should be ASCII characters 2. Your program should be able to handle upper and lower case letters both 3. The sort should be done in a descending manner 4.Note: Please use array-based representation for these sorting algorithms Please write comment n explain each step clearly as well your program should show what you are taking as input array and what your...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT