*/
Doubly link list 1.0
Submitted By:
balkrishna
Rating:





(
Rate It)
Description:The code is for creating adding deleting printing
searching inserting... etc in doubly link list
NOTE: Some downloads must be obtained through publishers´s site.
Do you want to get your software listed on this site? Go to our
submissions area.
Screenshot
Details
Number of downloads:
18180
Comments (3)
very good




Posted by: www.csd.uoc.gr on Thursday, January 30, 2003
efficient,simple code to understand
I need a help






























































































































































































































































Posted by: ignacio on Saturday, February 22, 2003
Emmail me on how to insert from the head, tail and middle node from double linked list from algorithm
Absolutely Wrong piece of code.
Posted by: Padam J Singh on Wednesday, September 21, 2005
In the delete, the author does no validation at all:
ptr->llink->rlink=ptr->rlink;
ptr->rlink->llink=ptr->llink;
what if, ptr->llink is NULL?
what is, ptr->rrlink is NULL?
in both cases, you will be trying to dereference from a NULL pointer, a classic mistake.
To Simulate the point I am trying to make, add a node, then delete that same node.
Add Your Rating