Skip to content

ashishtayal89/dsandalgos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

##Data Structures

###Link List

  1. addFront -> light operation. C : O(1)
  2. addEnd -> light operation. C : O(1)
  3. removeFront -> light operation. C : O(1)
  4. removeEnd -> heavy operation since the whole list needs to be traversed to reach the last node. C : O(n)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published