BaseMax / DoublyLinkedListC

This is a simple implementation of a doubly linked-list in C. Doubly linked-lists are a type of data structure that are similar to singly linked-lists, but they have a pointer to the previous node in addition to the next node. This allows for traversal in both directions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BaseMax/DoublyLinkedListC Stargazers