Search⌘ K
AI Features

Basic Linked List Operations

Explore fundamental singly linked list operations such as inserting at the head or end, deleting elements, searching, and checking if the list is empty. Understand their implementations in Java and the time complexity of key methods to build a solid foundation for coding interview success.

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
...