Skip to content

DataStructure - List of elements called nodes that are connected together in a single file line.

Notifications You must be signed in to change notification settings

yamitrvg12/LinkedList

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LinkedList

The linked List inself needs to know about two nodes in the whole list for it to function correctly (Head node and tail node).

Ventajas y desventajas

  • 🤘 Añadir y remover elementos con un iterador.
  • 🤘 Añadir y remover elementos al inicio o al final de la lista.
  • 💩 Uso de memoria adicional por la referencia a los elementos anteriores y siguientes.
  • 💩 El acceso a los elementos depende del tamaño de la lista.

Installation

  1. Install node & yarn
  2. cd LinkedList
  3. yarn install
  4. yarn run devserver
  5. Enjoy

About

DataStructure - List of elements called nodes that are connected together in a single file line.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published