An open API service indexing awesome lists of open source software.

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.

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.