A simple Python project that demonstrates various sorting algorithms. This repository is designed for educational and demonstration purposes, helping users understand and compare different sorting techniques.
Features Implementation of popular sorting algorithms such as: Bubble Sort Selection Sort Insertion Sort Merge Sort Quick Sort Sample input and output for each algorithm Easy to read and modify Python code Ideal for students and beginners learning sorting techniques
Technology Stack Language: Python
Setup Instructions Clone the repository: git clone https://github.com/CPE-NGG/Sorting.git Navigate to the project directory: cd Sorting Run the Python scripts: python <algorithm_file>.py Replace <algorithm_file>.py with the desired script (e.g., bubble_sort.py).
Usage Explore the individual Python files to view and run sorting algorithms. Modify input data within the scripts to test different scenarios. Use the implementations as references for your own projects or assignments.