What is a Linked List?
What are the;
pros & cons of Linked Lists over Arrays?
How do we declare a Node struct Type?
How do we point to the head?
How do we Create a Node?
How do we:
#1 Allocate memory for the Node
How do we:
#2 Store data in the Node
How do we:
#3 Insert the Node before the List’s Head
Example: Creating a Linked List Containing Numbers Entered by the User
How do we:
Search a Linked List?
How do we:
Delete a Node from a Linked List?
What is an Ordered List?