https://github.com/obsfx/doubly-linked-list
A doubly linked list data structure implementation in ANSI C
https://github.com/obsfx/doubly-linked-list
Last synced: about 2 months ago
JSON representation
A doubly linked list data structure implementation in ANSI C
- Host: GitHub
- URL: https://github.com/obsfx/doubly-linked-list
- Owner: obsfx
- License: gpl-3.0
- Created: 2020-07-25T18:04:11.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-26T13:07:05.000Z (almost 6 years ago)
- Last Synced: 2025-12-02T09:49:54.748Z (7 months ago)
- Language: C
- Size: 21.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# doubly linked list
[Doubly linked list - Wikipedia](https://en.wikipedia.org/wiki/Doubly_linked_list)
a doubly linked list implementation that was written in ANSI C to get more familiar with pointers.
to run the test app
```
git clone https://github.com/obsfx/doubly-linked-list.git
cd doubly-linked-list
make
./test
```