Question

In: Computer Science

Write a program to implement and analyzing the Bubble Sort. a. Write a C++ function for...

Write a program to implement and analyzing the Bubble Sort. a. Write a C++ function for Bubble Sort b. Use a dynamic array of integers in a variable size of n. c. Display the following information: 1) Total counts of comparisons 2) Total counts of shifts / moves / swaps, whichever applies d. Write a main() function to test a best, and an average cases in terms of time efficiency i. Fill out the array with random numbers for an average case ii. Fill out the array with selected numbers for the best case

Solutions

Expert Solution

// Optimized implementation of Bubble sort

#include <stdio.h>

struct me

{

    int a, b;

};

typedef struct me Struct;

void swap(int *xp, int *yp)

{

    int temp = *xp;

    *xp = *yp;

    *yp = temp;

}

// A utility function to print an array of size n

void printArray(int array[], int n)

{

    int i;

    if (n > 0)

        printf("|");

    for (i = 0; i < n; i++)

        printf(" %d |", array[i]);

    printf("\n\n");

}

// An optimized version of Bubble Sort

Struct bubbleSort(int array[], int n)

{

    Struct t;

    t.a = 0;

    t.b = 0;

    int i, j, s, c, st = 0, ct = 0;

    int swapped;

    for (i = 0; i < n - 1; i++)

    {

        s = 0;

        c = 0;

        swapped = 0;

        for (j = 0; j < n - i - 1; j++)

        {

            c++;

            if (array[j] > array[j + 1])

            {

                swap(&array[j], &array[j + 1]);

                swapped = 1;

                s++;

            }

        }

        printf("\n\nNumber of comparison & swaps in iteration number %d are respectively: %d & %d", i + 1, c, s);

        printf("\nResult after iteration number %d is: ", i + 1);

        printArray(array, n);

        t.a += s;

        t.b += c;

        // IF no two elements were swapped by inner loop, then break

        if (swapped == 0)

        {

            printf("\nAs there's no swapping so, stop the algorithm, This further means that Array is already sorted.");

            break;

        }

    }

    return t;

}

// Driver program to test above functions

int main()

{

    Struct t;

    int array[] = {12, 8, 4, 13, 7, 17, 15, 2};

    int n = sizeof(array) / sizeof(array[0]);

    printf("\nArray Given to me: ");

    printArray(array, n);

    t = bubbleSort(array, n);

    printf("\n\n\nTotal number of comparison & swaps are respectively: %d & %d", t.b, t.a);

    printf("\nFinally Sorted Array: ");

    printArray(array, n);

    return 0;

}

SAMPLE OUTPUT:

PLEASE LIKE IT RAISE YOUR THUMBS UP
IF YOU ARE HAVING ANY DOUBT FEEL FREE TO ASK IN COMMENT SECTION


Related Solutions

Write and test a C program to implement Bubble Sort. . In your C program, you...
Write and test a C program to implement Bubble Sort. . In your C program, you should do: Implement the array use an integer pointer, get the size of the array from standard input and use the malloc function to allocate the required memory for it. Read the array elements from standard input. Print out the sorted array, and don’t forget to free the memory. Debug your program using Eclipse C/C++ CDT.
Write Insertion Sort and Bubble Sort Program for C# also write their algorithm and Explain their...
Write Insertion Sort and Bubble Sort Program for C# also write their algorithm and Explain their working.
1.   Bubble Sort Implement a bubble sort program that will read from a file “pp2.txt” from...
1.   Bubble Sort Implement a bubble sort program that will read from a file “pp2.txt” from the current directory a list of intergers (10 numbers to be exact), and the sort them, and print them to the screen. You can use redirection to read data from a given file through standard input, as opposed to reading the data from the file with the read API (similar to Lab #1). You can assume the input data will only have 10 numbers...
Bubble Sort Programmatically Implement in C++ the necessary program that does the following: Asks the user...
Bubble Sort Programmatically Implement in C++ the necessary program that does the following: Asks the user and gets at least 5 whole numbers as user input from the keyboard and stores them in an array Displays the numbers from the array on the screen Sorts the numbers in the array using BUBBLE SORT Algorithm Displays the sorted numbers on the screen from the array Save your code file as "yourLastname_Firstname_BubbleSort.cpp" and submit your .cpp file. NOTE: This assignment needs only...
C++ Bubble Sort Write a program that ask user to enter 7 numbers and store that...
C++ Bubble Sort Write a program that ask user to enter 7 numbers and store that in array. Display that all numbers before and after performing Bubble sort. You must have to create new function with required parameter to perform Bubble sort. Sample Run :- Enter 1 number :- 1 Enter 2 number :- 5 Enter 3 number :- 7 Enter 4 number :- 45 Enter 5 number :- 90 Enter 6 number :- 6 Enter 7 number :- 55...
Write a Y86 program in C language that sorts an array of data using Bubble Sort....
Write a Y86 program in C language that sorts an array of data using Bubble Sort. Allow the user to input up to 10 numbers from the keyboard. Sort the array in place (i.e., no need to allocate additional memory for the sorted array). Your program should be a complete one
Write a program and test a program that translates the following Bubble Sort algorithm to a...
Write a program and test a program that translates the following Bubble Sort algorithm to a bubblesort function. The function's prototype is, void bubblesort(int a[], int size); Bubble Sort The inner loop moves the largest element in the unsorted part of the array to the last position of the unsorted part of the array; the outer loop moves the last position of the unsorted part of the array. The Bubble sort exchanges elements with adjacent elements as it moves the...
LISP Programming Language Write a Bubble Sort program in the LISP Programming Language called “sort” that...
LISP Programming Language Write a Bubble Sort program in the LISP Programming Language called “sort” that sorts the array below in ascending order.  LISP is a recursive language so the program will use recursion to sort. Since there will be no loops, you will not need the variables i, j, and temp, but still use the variable name array for the array to be sorted.             Array to be sorted is 34, 56, 4, 10, 77, 51, 93, 30, 5, 52 The...
C++ Program (Using 2D array and bubble sort to sort data) A company pays its salespeople...
C++ Program (Using 2D array and bubble sort to sort data) A company pays its salespeople on a commission basis.  The salespeople each receive $250 per week plus 11 percent of their gross sales for the sales period.  For example, a salesperson who grosses $5000 in sales in the period receives $250 plus 11 percent of $5000, or a total of $812.21.  Write a program (using an array of counters) determines for each salesperson their total sales, their salary and additional data points.  There...
write a program in C language Create a function to perform the insertion sort. Now the...
write a program in C language Create a function to perform the insertion sort. Now the program will perform the following steps: Prompt the user to enter the number of array elements (say, N). Read the number of elements (N). Use dynamic memory allocation to allocate an array of N single precision floating-point elements (C type float). Read the N single precision floating-points elements to the allocated array. Invoke a function to sort the array using insertion sort (the insertion...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT