Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 2.04 KB

File metadata and controls

44 lines (32 loc) · 2.04 KB

Welcome to Algorithms!

This page is intended to provide a list of top algorithms in computer science any programming students would look for. I have also tried to provide useful links on more information about each of them, mostly GeeksforGeeks references.

Algorithms List:

Sort A-Z

  1. Linear search
  2. Binary search
  3. Selection sort
  4. Insertion sort
  5. Bubble sort
  6. Merge sort
  7. Quick sort
  8. Heap sort
  9. Radix sort
  10. Bucket sort
  11. Shell sort
<script src="https://code.jquery.com/jquery-3.0.0.min.js"></script> <script> var activeLanguage = "de" function sortUL(selector) { var $ul = $(selector); $ul.find('li').sort(function (a, b) { var upA = $(a).val().toUpperCase(); var upB = $(b).val().toUpperCase(); return (upA < upB) ? -1 : (upA > upB) ? 1 : 0; }).appendTo(selector); }; $(document).ready(function () { sortUL("#id01"); }); </script>