Sorting Visualizer (CLI)

Welcome to the Sorting Visualizer (CLI) page.

This page contains a brief description and implementation instructions for the project.

Project Description

Demonstrates sorting algorithms (like bubble sort, selection sort) in the terminal. Generates a list of random numbers and steps through a chosen sort, printing the list at each swap.

Project Requirements

Python 3.x (no libraries needed).

How to Run the Project

  1. Write a script (e.g. sort_visualizer.py) that generates a list and implements a sort (with prints after each swap).
  2. Run it: python sort_visualizer.py. Choose an algorithm; watch each step printed in the console.

Key Concepts Learned

Possible Extensions

Troubleshooting & Debugging

See Troubleshooting & Debugging.

← Back to Python Programming Page