Linked List
A Linked list is the most sought-after data structure when it comes to handling dynamic data elements. A leetcodeLinked list consists of a data element known as a node. And each node consists of two fields: one field has data, and in the second field, the node has an address that keeps a reference to the next node.