Skip to content

Latest commit

 

History

History

0x11-singly_linked_lists

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

0x11. C - Singly linked lists

Description

What you should learn from this project:

  • When and why using linked lists vs arrays
  • How to build and use linked lists

  • Write a function that prints all the elements of a list_t list.
  • Write a function that returns the number of elements in a linked list_t list.
  • Write a function that adds a new node at the beginning of a list_t list.
  • Write a function that adds a new node at the end of a list_t list.
  • Write a function that frees a list_t list.

Author