In a typical circular doubly linked list, a node has

A) a field to store the element, and two references to keep track of two successor nodes, and a reference to keep track of the start of the list
B) a field to store the element, and two references to keep track of successor and predecessor nodes
C) a field to store the element, and two references to keep track of two predecessor nodes, and a reference to keep track of the end of the list
D) either one of A or C

B) a field to store the element, and two references to keep track of successor and predecessor nodes

Computer Science & Information Technology

You might also like to view...

Given the following code, how many times per second will the TimerListener event be generated?

Timer timer = new Timer(1000, new TimerListener()); A) 1 B) 10 C) 100 D) 1000

Computer Science & Information Technology

Which of the following is not a reason for partitioning processes into separate programs?

A) the processes represent different user groups B) the processes execute at different times C) to control system security D) to maintain consistency of data

Computer Science & Information Technology