Explain Building A Linked List , Ways of Building Linked List, Need To Build Linked List
Building a Linked List
There are two ways to build a linked list
1) forwards
2) backwards
What is needed to build a linked list forward:
-a pointer for the first node
-a pointer for the last node
-a pointer for the new node being added
Labels: Data Structure