https://github.com/alexlopezdevelop/linked-lists
Linked lists are the best and simplest example of a dynamic data structure that uses pointers for its implementation. However, understanding pointers is crucial to understanding how linked lists work, so if you've skipped the pointers tutorial, you should go back and redo it. You must also be familiar with dynamic memory allocation and structures.
https://github.com/alexlopezdevelop/linked-lists
c linked-list list
Last synced: 12 months ago
JSON representation
Linked lists are the best and simplest example of a dynamic data structure that uses pointers for its implementation. However, understanding pointers is crucial to understanding how linked lists work, so if you've skipped the pointers tutorial, you should go back and redo it. You must also be familiar with dynamic memory allocation and structures.
- Host: GitHub
- URL: https://github.com/alexlopezdevelop/linked-lists
- Owner: AlexLopezDevelop
- License: apache-2.0
- Created: 2019-04-12T14:22:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-02T09:15:59.000Z (about 7 years ago)
- Last Synced: 2025-01-15T00:40:45.310Z (over 1 year ago)
- Topics: c, linked-list, list
- Language: C
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Linked-lists
Linked lists are the best and simplest example of a dynamic data structure that uses pointers for its implementation. However, understanding pointers is crucial to understanding how linked lists work, so if you've skipped the pointers tutorial, you should go back and redo it. You must also be familiar with dynamic memory allocation and structures.
More info at: https://www.learn-c.org/en/Linked_lists