https://github.com/cthacker-udel/linkedlistc
Linked List - C code - cthacker-udel. Implements Single, Doubly, Triply, and Circular Linked List in C.
https://github.com/cthacker-udel/linkedlistc
c circular-list doubly-linked-list heap linked-list pointer triply-linked-list
Last synced: 9 months ago
JSON representation
Linked List - C code - cthacker-udel. Implements Single, Doubly, Triply, and Circular Linked List in C.
- Host: GitHub
- URL: https://github.com/cthacker-udel/linkedlistc
- Owner: cthacker-udel
- Created: 2021-05-02T09:48:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-09T00:39:01.000Z (over 4 years ago)
- Last Synced: 2025-02-07T17:39:06.235Z (10 months ago)
- Topics: c, circular-list, doubly-linked-list, heap, linked-list, pointer, triply-linked-list
- Language: C
- Homepage:
- Size: 269 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linked List Implementation - Single, Double, Triple, Circular
> Author - Cameron Thacker (cthacker@udel.edu)
* This project includes C implementation of single linked list, double linked list, triple linked list, and Circular Linked List, the implemenations of the list use the function `malloc` and pointer arithmetic. The default name of the structure to contain the nodes of the linked list are `node`, and the functions available including removing, adding, and displaying the nodes.
* Initially when the c file is compiled and ran, a menu will be displayed, which requires user input to execute, each option is numbered and corresponds to a function call.