0
8.2kviews
Explain the operations of singly linked lists
1 Answer
2
358views

There are various linked list operations that allow us to perform different actions on linked lists. For example, the insertion operation adds a new element to the linked list.

Here's a list of basic linked list operations

  • Traversal - access each element of the linked list
  • Insertion - adds a …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.