Algorithm to emplement doubly linked list
Answers
Answered by
0
ggggggggffffffffggggggggffffff
Answered by
1
Start.
Input the DATA to be inserted.
Create a new node.
NewNode → Data = DATA NewNode →Lpoint =NULL.
IF START IS NULL NewNode→ Rpoint = NULL.
Else NewNode → Rpoint = START START→Lpoint = NewNode.
START =NewNode.
Stop.
Similar questions