Skip to content

Latest commit

 

History

History

doubly_linked_lists

C - Doubly linked lists

Description

  • tests/ - Main functions provided by Holberton School to test the files.
  • lists.h - Header file with function prototypes and with structures.

Tasks

  • 0. Print list
  • 1. List length
    • 1-dlistint_len.c - Function that returns the number of elements in a linked list.
  • 2. Add node
  • 3. Add node at the end
  • 4. Free list
  • 5. Get node at index
  • 6. Sum list
    • 6-sum_dlistint.c - Function that returns the sum of all the data of a linked list.
  • 7. Insert at index
  • 8. Delete at index

Author