Doubly linkedlist is a linked data structure. It use to store data sequentially linked records, which know as nodes. In Doubly linkedlist a node content three fields, two for linked (one link index previous record and other index next) and one for data.
Click here for Doubly linkedlist in C++
Comments
Post a Comment