Write an algorithm in pseudo code to
find one element and delete it in a doubly linked list. Your
algorithm will print the original list, request the user to put in
an element to be deleted, then print the final list after the
deletion is done. If the element doesn’t exist in the list, print
"XXX is not in the list" where "XXX" should be the one you received
from the user.
Use the
following as your test cases to...