Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 380 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 380 Bytes

This is an implementation for many data structures in C like LIFO (Stack), FIFO (Queue), ...

LinkedList

This is an implementation for LinkedList - based on the design of LinkedList in the Linux kernel.


Queue

This is an implementation for FIFO (Queue) - based on LinkedList.


Stack

This is an implementation for LIFO (Stack) - based on LinkedList.