Skip to content

Latest commit

 

History

History

0x12-singly_linked_lists

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

0x12. C - Singly linked lists

Resources:books:

Read or watch:


Learning Objectives:bulb:

What I learned from this project:

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

[0. Print list](./ 0-print_list.c)

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

Author