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

https://github.com/basemax/singlylinkedlistc

This is a simple implementation of a singly linked-list in C. Singly linked-lists are a type of data structure that are used to store a collection of elements. Each element in a singly linked-list is called a node. Each node contains two parts: the data and a pointer to the next node. The first node in a singly linked-list is called the head.
https://github.com/basemax/singlylinkedlistc

c data-structure datastructure linked-list linkedlist singly-linked-list singly-linked-list-in-c singly-linkedlist

Last synced: 2 months ago
JSON representation

This is a simple implementation of a singly linked-list in C. Singly linked-lists are a type of data structure that are used to store a collection of elements. Each element in a singly linked-list is called a node. Each node contains two parts: the data and a pointer to the next node. The first node in a singly linked-list is called the head.

Awesome Lists containing this project