InterviewSolution
| 1. |
What Is Sorted Linked List? |
|
Answer» Linked list MEANS node which is connected each other with a line. It means that each node is connected with another one. Each node of the list holds the reference of the next node. If we talk about the sorted linked list , it is also a list just like another list. but the DIFFERENCE is only that it HOLD all the nodes in a sequential manner either in ascending ORDER descending order. Linked list means node which is connected each other with a line. It means that each node is connected with another one. Each node of the list holds the reference of the next node. If we talk about the sorted linked list , it is also a list just like another list. but the difference is only that it hold all the nodes in a sequential manner either in ascending order descending order. |
|