LinkedList
LinkedList is the dynamic data structure
as we can add or remove elements at ease, and it can even grow as needed.
Just like arrays,
linked lists store elements sequentially, but don’t store the elements contiguously like an array.
A linked list is ...
devbunney.hashnode.dev2 min read