You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# <divalign="center">0x13. C - More singly linked lists</div>
2
+
3
+
## About
4
+
5
+
A follow up project on [singly linked lists](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x12-singly_linked_lists)
6
+
7
+
## Files & Descriptions
8
+
9
+
[0-print_listint.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/0-print_listint.c) a function that prints all the elements of a `listint_t` list
10
+
11
+
[1-listint_len.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/1-listint_len.c) a function that returns the number of elements in a linked `listint_t` list
12
+
13
+
[2-add_nodeint.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/2-add_nodeint.c) a function that adds a new node at the beginning of a `listint_t` list
14
+
15
+
[3-add_nodeint_end.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/3-add_nodeint_end.c) a function that adds a new node at the end of a `listint_t` list
16
+
17
+
[4-free_listint.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/4-free_listint.c) a function that frees a `listint_t` list
18
+
19
+
[5-free_listint2.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/5-free_listint2.c) a function that frees a `listint_t` list
20
+
21
+
[6-pop_listint.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/6-pop_listint.c) a function that deletes the head node of a `listint_t` linked list, and returns the head node’s data (n)
22
+
23
+
[7-get_nodeint.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/7-get_nodeint.c) a function that returns the nth node of a `listint_t` linked list
24
+
25
+
[8-sum_listint.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/8-sum_listint.c) a function that returns the sum of all the data (n) of a `listint_t` linked list
26
+
27
+
[9-insert_nodeint.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/9-insert_nodeint.c) a function that inserts a new node at a given position
28
+
29
+
[10-delete_nodeint.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x13-more_singly_linked_lists/10-delete_nodeint.c) a function that deletes the node at index `index` of a `listint_t` linked list
0 commit comments