Thursday, August 2, 2007

Data Structures Question

VCommentData Structures Question
Construct a doubly linked list using a single pointer in each node.

This can be done using a linked list called XOR linked list.. 
 
Each node stores the XOR of the address for previous and the address for next in one field.
 
refer this :
 
 


No response to “Data Structures Question”