Basic Linked List Operations
This lesson lists the various operations that can be performed on linked lists
The primary operations, which are generally a part of the LinkedList
struct, are listed below:
insert_at_tail(data)
- Inserts an element at the end of the linked listinsert_at_head(data)
- Inserts an element at the start/head of the linked listdelete(data)
- Deletes an element with your specified value from the linked listdelete_at_head()
-
Access this course and 1400+ top-rated courses and projects.