Computer Science, asked by britneymac5654, 7 months ago

Write an algorithm to implement ‘Phone contact list’ using a doubly linked list.

Answers

Answered by adhende115
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