About Linked List
Linked list is a linear structure linked together by a series of pointers, with each node consisting of two parts, a data field and a pointer field.
Type of Linked List
- singly linked list
- doubly linked list
- circular singly linked list
- circular doubly linked list
Less than 1 minute