https://github.com/nandomattos/linkedlists
C algorithm to create and modify linked lists using reference parameter
https://github.com/nandomattos/linkedlists
c data-structures linked-list pointers
Last synced: 21 days ago
JSON representation
C algorithm to create and modify linked lists using reference parameter
- Host: GitHub
- URL: https://github.com/nandomattos/linkedlists
- Owner: nandoMattos
- Created: 2022-10-29T12:13:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-20T19:44:35.000Z (over 3 years ago)
- Last Synced: 2025-10-29T11:43:07.908Z (9 months ago)
- Topics: c, data-structures, linked-list, pointers
- Language: C
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LinkedLists :jigsaw:
### _C algorithm to create and modify linked lists_
This is a refactored project I developed as a requirement at college. As expected from a C algorithm-only, it's just a black terminal screen showing a bunch numbers and basic instructions. The application features basic manipulations in linked lists, including basic insertion, ascending order insertion, remove element, print list and split list.
#### Doubly linked list:

The original code was such a mess and with a ton of code repetition, so I decided to organize it properly and avoid the fearsome CTRL+V. Despite simple, it was very important to make me understand a few abstract concepts such as pointers and memory adress.