SRM Institute of Science and Technology, Kattankulathur School of Computing
SRM Institute of Science and Technology, Kattankulathur School of Computing
School of Computing
21CSC201J – Data Structures and Algorithms
Topic: Introduction to Linked Lists
Activity: Fill in the blanks
3. Linked lists acts as a _________to implement data structures such as stacks, queues, and their
variations
4. A linked list can be perceived as a _____________ in which each node contains one or more data
fields and a pointer to the next node.
5. In a linked list, every node contains a pointer to another node which is of the same type, it is also
called a_______________.
6. Linked lists contain a pointer variable START that stores the _______________in the list.
7. We can traverse the entire list using ________which contains the address of the first node; the
next part of the first node in turn stores the address of its succeeding node
9. Linked lists provide an efficient way of storing _________ and perform basic operations such as
insertion, deletion, and updation of information at the cost of extra space required for storing
address of the next node.