Skip to content

Vishalchau2003/sorting-using-c

Repository files navigation

Sorting Algorithms in C++

This repository contains implementations of various sorting algorithms in C++. Each algorithm is implemented in both iterative and recursive approaches where applicable.

📌 Sorting Algorithms Included

  • Bubble Sort (Iterative & Recursive)
  • Insertion Sort (Iterative & Recursive)
  • Selection Sort (if added)
  • Merge Sort
  • Quick Sort