Skip to content

Commit baa8b70

Browse files
committed
Update README.md
1 parent 0f8eaa9 commit baa8b70

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed
+29-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
# More singly linked lists
1+
# <div align="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

Comments
 (0)