Skip to content

Commit

Permalink
Merge pull request #102 from AkshatPandey-2004/main
Browse files Browse the repository at this point in the history
Only Quick Sort Page
  • Loading branch information
MastanSayyad authored Jul 13, 2024
2 parents b9025bb + c3eda91 commit ccc5f3f
Show file tree
Hide file tree
Showing 12 changed files with 1,553 additions and 26 deletions.
24 changes: 12 additions & 12 deletions Algorithm/Bubble.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="Bubble.html">Bubble Sort</a>
<a class="dropdown-item" href="selectionsort.html">Selection Sort</a>
<a class="dropdown-item" href="Insertion.html">Insertion Sort</a>
<a class="dropdown-item" href="#">Comb Sort</a>
<a class="dropdown-item" href="Selectionsort.html">Selection Sort</a>
<a class="dropdown-item" href="Insertionsort.html">Insertion Sort</a>
<a class="dropdown-item" href="CombSort.html">Comb Sort</a>
<a class="dropdown-item" href="mergesort.html">Merge Sort</a>
<a class="dropdown-item" href="#">Heap Sort</a>
<a class="dropdown-item" href="#">Quick Sort</a>
<a class="dropdown-item" href="Heapsort.html">Heap Sort</a>
<a class="dropdown-item" href="Quicksort.html">Quick Sort</a>
</div>
</li>
<!-- <li class="nav-item">
Expand All @@ -83,13 +83,13 @@
Algorithm
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="./Bubble.html">Bubble Sort</a>
<a class="dropdown-item" href="selectionsort.html">Selection Sort</a>
<a class="dropdown-item" href="Insertion.html">Insertion Sort</a>
<a class="dropdown-item" href="#">Comb Sort</a>
<a class="dropdown-item" href="mergesort.html">Merge Sort</a>
<a class="dropdown-item" href="#">Heap Sort</a>
<a class="dropdown-item" href="#">Quick Sort</a>
<a class="dropdown-item" href="Bubble.html">Bubble Sort</a>
<a class="dropdown-item" href="Selectionsort.html">Selection Sort</a>
<a class="dropdown-item" href="Insertionsort.html">Insertion Sort</a>
<a class="dropdown-item" href="CombSort.html">Comb Sort</a>
<a class="dropdown-item" href="mergesort.html">Merge Sort</a>
<a class="dropdown-item" href="Heapsort.html">Heap Sort</a>
<a class="dropdown-item" href="Quicksort.html">Quick Sort</a>
</div>
</li>
<li class="nav-item">
Expand Down
Empty file added Algorithm/CombSort.html
Empty file.
Empty file added Algorithm/Heapsort.html
Empty file.
Empty file added Algorithm/Insertionsort.html
Empty file.
363 changes: 363 additions & 0 deletions Algorithm/Mergesort.html

Large diffs are not rendered by default.

Loading

0 comments on commit ccc5f3f

Please sign in to comment.