Write an algorithm to implement ‘Phone contact list’ using a doubly linked list.
Answers
Answered by
0
Answer:
Algorithm:
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.
Explanation:
plz follow me
Similar questions