https://github.com/svec1/singly-linked-listc
This implementation of a singly linked list in c
https://github.com/svec1/singly-linked-listc
Last synced: 11 months ago
JSON representation
This implementation of a singly linked list in c
- Host: GitHub
- URL: https://github.com/svec1/singly-linked-listc
- Owner: svec1
- License: mit
- Created: 2024-07-17T12:08:15.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-28T22:55:31.000Z (almost 2 years ago)
- Last Synced: 2024-07-28T23:33:28.521Z (almost 2 years ago)
- Language: C
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# singly linked list
This implementation of a singly linked list will look like this:
each node will have the nth amount of data, with each element of this list being
the size of data_byte_size (the size in bytes of the data type that was specified when creating the list).