Projects Inventory

Sorting Algorithms (Bubble, Selection, Insertion, Merge, Quick) Gaming Project in C++

Explanation

  1. Bubble Sort:
    • Repeatedly compares adjacent elements and swaps them if they are in the wrong order.
    • Advertisement
    • Continues until no more swaps are needed.
  2. Selection Sort:
    • Finds the minimum element from the unsorted portion and swaps it with the first unsorted element.
    • Advertisement
    • Repeats this process for all elements.
  3. Insertion Sort:
    • Builds the final sorted array one item at a time.
    • Takes each element and inserts it into its correct position among the previously sorted elements.
  4. Merge Sort:
    • Divides the array into two halves, recursively sorts them, and then merges the sorted halves.
    • Uses a helper function to merge two sorted subarrays.
  5. Quick Sort:
    • Selects a pivot element and partitions the array into elements less than the pivot and elements greater than the pivot.
    • Advertisement
    • Recursively applies the same process to the subarrays.
  6. Utility Functions:
    • printArray(): Prints the elements of the array.
    • main(): Tests each sorting algorithm on a copy of the same array to show their results.
Exit mobile version