Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 994 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 994 Bytes

image

A data structure implementation lib in Typescript

Data Structure

LinkedList: A linked list is a linear collection of data elements, in which linear order is not given by their physical placement in memory. Instead, each element points to the next.

Stack: A stack is an abstract data type that serves as a collection of elements in last in first out order.

Queue: A queue is an abstract data type that serves as a collection of elements in first in first out order.