51.
Which among the following is a typical declaration of an unrolled linked list in C?

#define SIZE N                                                             
struct node 
{                                                                           
    int node_count;                                                     
    int arr[SIZE];                                              
    struct node *next;                              
};

#define SIZE N                                                            
struct node 
{                                                                                                                              
    int arr[SIZE];                                              
    struct node *prev;      
    struct node *top;                        
};

#define SIZE N                                                          
struct node 
{                                                                           
    int node_count;                                                                                           
    struct node *next;                              
};

#define SIZE N                                                         
struct node 
{                                                                           
    int node_count;                                                     
    int arr[SIZE];                                                                           
};

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?

55.
What is xor linked list?

56.
What are implicit and explicit implementations of freelists?

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.