MastanSayyad / Visual-Sort

Visual Sort is a web-based sorting algorithm visualization tool built using HTML, CSS, Bootstrap, SCSS, and JavaScript. This project provides an interactive way to visualize various sorting algorithms in action, helping users understand how different algorithms work and their efficiency in sorting data.
https://visual-sort-pink.vercel.app/
MIT License
9 stars 18 forks source link

Add comb sort to the algorithm list #66

Closed aadium closed 5 days ago

aadium commented 6 days ago

Comb sort compares pairs of elements that are a certain distance apart, and swap them if they’re out of order. The distance between the pairs is initially set to the size of the list being sorted, and is then reduced by a shrink factor with each pass, until it reaches a minimum value of 1. This process is repeated until the list is fully sorted.

aadium commented 6 days ago

I am requesting you to assign me this issue.

MastanSayyad commented 6 days ago

Sounds great ! Assigned to you!! @aadium

MastanSayyad commented 6 days ago

@aadium there is already one for heap and quick sort integrated in visual.html file

and thank you for pointing that out, you can raise another issue to fix the navbar actually add visual.html in each link the links are of old files the visual.html file is the updated and integrated one with full visualized working functionality!!

aadium commented 6 days ago

I have created the pull request.