Assume that a circular doubly linked list has been created, as in Figure 3.32. After each of the following assignments, indicate changes made in the list by showing which links have been modified. Process these assignments in sequence; that is, the second assignment should make changes in the list modified by the first assignment, and so on.
list.next.next.next = list.prev;
list.prev.prev.prev = list.next.next.next.prev;
list.next.next.next.prev = list.prev.prev.prev;
list.next = list.next.next;
list.next.prev.next = list.next.next.next;
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here