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

https://github.com/basemax/circularlinkedlistc

This is a simple implementation of a circular linked-list in C. Circular linked-lists are a type of linked-list where the last node points to the first node. This is useful for implementing queues and stacks. This implementation is a doubly linked-list, meaning that each node has a pointer to the next node and a pointer to the previous node.
https://github.com/basemax/circularlinkedlistc

c circular circular-linked-list circular-linkedlist data-structure datastructure ds linked-list linkedlist

Last synced: 2 months ago
JSON representation

This is a simple implementation of a circular linked-list in C. Circular linked-lists are a type of linked-list where the last node points to the first node. This is useful for implementing queues and stacks. This implementation is a doubly linked-list, meaning that each node has a pointer to the next node and a pointer to the previous node.

Awesome Lists containing this project