Users across all languages should watch videos 3 and 4 in this playlist.
Video 5 is C++ implementation of Linked List. Implementations in other languages are given below
Videos 6-11 are specific, standard questions on Linked List and get be viewed for further clarity and practice
Insert node at beginning
Insert node at nth position
Delete node at nth position
Reverse Linked list iterative
Print elements of LL in forward and reverse using recursion
Reverse LL using recursion
Creating a Linked list from scratch(Above videos)
Traversing and printing an LL, given head node
Inserting a node at beginning/nth position
Deleting node in LL
Reversing LL(Recursive and iterative)
Searching node in LL
Finding middle of LL