what is a structure? explain how to create a structure to create a Node for Singly linked List .
Answers
Answered by
0
Answer:
Each element in the singly linked list is called a node. Each node has two components: data and a pointer next which points to the next node in the list. The first node of the list is called as head, and the last node of the list is called a tail. The last node of the list contains a pointer to the null.
Explanation:
I hope this answer help you. Follow for more answers.
Similar questions