Basic Linked List Operations
This lesson lists the various operations that can be performed on linked lists
We'll cover the following...
We'll cover the following...
The primary operations, which are generally a part of the LinkedList
class, are listed below:
InsertAtTail(data)
- Inserts an element at the end of the linked listInsertAtHead(data)
- Inserts an element at the start/head of the linked listDelete(data)
- Deletes an element with your specified value from the linked listDeleteAtHead()
- Deletes the