Skip to content

krissolui/algorithm-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Algorithms in JavaScript

  • Recursion
  • Sorting
    • Bubble sort
    • Selection sort
    • Insertion sort
      • Efficient for (almost) sorted lists or small lists
    • Merge sort
      • Guaranteed time complexity -> O(nlog(n))
      • Space complexity -> O(n)
    • Quick sort
      • Worst case time complexity -> O(n^2)
      • Space complexity -> O(log(n))
    • Additional:
      • Radix sort
      • Counting sort
        • Potentially better time complexity ~ O(n+k) / O(nk)
        • Only for numbers and in range
  • Searching
    • Breadth first search (BFS)
      • Good for shortest path problems without weighting
      • Required more memory
    • Depth first search (DFS)
      • Good for path existence problems
      • Might be slow and consume memory to store call stack for tall tree
    • Additional:
      • Dijkstra Algorithm
        • Good for shortest path problems on positive-weighted graphs
        • Better efficiency compared to Bellman-Ford
      • Bellman-Ford Algorithm
        • Can handle negative-weighted graphs
        • Worst case time complexity -> O(n^2)
  • Dynamic Programming
    • Cache calculated results
    • Might bring time complexity of recursive functions from O(2^n) to O(n)

About

Algorithms in JavaScript

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published