Cerence AI Interview Question

What is a linked list and how do you use it?

Interview Answer

Anonymous

Mar 4, 2024

A linked list is a linear data structure that stores data in nodes. Each node contains data and a reference to the next node in the list. The first node is called the head, and the last node is called the tail. And then type a code for linked list.