Skip to content

Latest commit

 

History

History

README.md

0x12. 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

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

  • 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.
  • Write a 64-bit program in assembly that prints Hello, Holberton, followed by a new line.

Author