To which kind of list does the following deletion algorithm correspond?Algorithm delete (list, deleteNode) if (deleteNode null) abort ("Impossible condition in delete double") end if if (deleteNode back not null) set predecessor to deleteNode back set predecessor fore to deleteNode fore else set list head to deleteNode fore end if if (deleteNode fore not null) set successor to deleteNode fore set successor back to deleteNode back else set list rear to deleteNode back end if recycle (deleteNode)end delete
A. linked list
B. circularly linked list
C. multilinked list
D. doubly linked list
Answer: D
Computer Science & Information Technology
You might also like to view...
If you are not finished with a document, it does not make a difference which option you choose for saving a webpage because you can edit all three types in Word
Indicate whether the statement is true or false
Computer Science & Information Technology
The purpose of ____ is to manage the effects of changes or differences in configurations on an information system or network.
A. security information and event management (SIEM) B. security operations center management(SOCM) C. configuration and change management (CCM) D. program monitoring
Computer Science & Information Technology