Basic Linked List Operations
This lesson lists the various operations that can be performed on linked lists
We'll cover the following...
Operations #
Following are the basic operations of a Singly Linked List:
| Operations | Descriptions | 
|---|---|
| insertAtEnd(data) | Inserts an element at the end of the linked list | 
| insertAtHead(data) | Inserts an element at the start/head of the linked list | 
 Ask