logo CodeStepByStep logo

linkedListMystery1

Language/Type: C++ linked lists pointers

Consider the following linked list of ListNode objects, with a pointer named front that points to the first node:

front -> [10] -> [20] -> [40] -> [30] -> [90] -> [80] -> [70] -> [60] -> [100] -> [0] /

Write the state of the linked list after the following code runs on it. If a given node is removed from the list, you don't need to draw that node, only the ones that remain reachable in the original list. Write your answer in this format, without the quotes: "front -> 10 -> 20 -> 30 /".

void linkedListMystery1(ListNode*& front) {
    ListNode* curr = front;
    while (curr != nullptr) {
        if (curr->next != nullptr && curr->data > curr->next->data) {
            curr->data++;
            ListNode* temp = curr->next;
            curr->next = curr->next->next;
            temp->next = curr;
        }
        curr = curr->next;
    }
}
list state

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.