Skip to content

davidgaspardev/c_linked_list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Linked List

In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes which together represent a sequence, these nodes hold both the data and a reference to the next node in the list, in some cases it also has a reference to the previous node.

Where it's used

Linked lists are often used because of their efficient insertion and deletion. They can be used to implement stacks, queues, and other abstract data types.

About

Understanding and implementing a Linked List in C.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages