51. Which among the following is a typical declaration of an unrolled linked list in C?
52. Assume there is a free list which contains nodes and is filled with a value if it is already assigned and the value will be the size of requested block else will be 0.
z = startpoint;
while ((z < end) && \\ didn't reach end
(*z <= len)) \\ too small to satisfy request
{
assign this block
}
The above code represents what?
z = startpoint;
while ((z < end) && \\ didn't reach end
(*z <= len)) \\ too small to satisfy request
{
assign this block
}
The above code represents what?53. What does first and last nodes of a xor linked lists contain ? (let address of first and last be A and B)
54. Which of the following data structure is preferred to have lesser search time when the list size is small?
55. What is xor linked list?
56. What are implicit and explicit implementations of freelists?
57. Which among the following is the time complexity for inserting an element in an unrolled linked list?
58. Which of the following method performs poorly when elements are accessed in sequential order?
59. Skip lists are similar to which of the following datastructure?
60. What technique is used in Transpose method?
Read More Section(Linked Lists in Data Structures)
Each Section contains maximum 100 MCQs question on Linked Lists in Data Structures. To get more questions visit other sections.