1.

Define Double Linked List?

Answer»

It is a collection of DATA elements called nodes,

where each NODE is divided into three PARTS:

  1. An INFO field that contains the information stored in the node.
  2. Left field that CONTAIN pointer to node on left side.
  3. Right field that contain pointer to node on right side.

It is a collection of data elements called nodes,

where each node is divided into three parts:



Discussion

No Comment Found