Skip to content

This repository will help to understand the algorithms and data structures in a programmatic manner.

Notifications You must be signed in to change notification settings

vijay26051991/Algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Algorithms

This repository will help to understand the algorithms and data structures in a programmatic manner.

Growth of functions:

  • O(1) Add an element to an array
  • log n(also log2n) - Binary search(Divide and conquer method)
  • n - Linear search
  • n logn - Quick sort
  • n2 - Bubble sort
  • 2n - Value is 1024
  • n! - 10! Value is 3million

Links for reference:

[Graph representation|https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/tutorial/]

About

This repository will help to understand the algorithms and data structures in a programmatic manner.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages