Domanda di colloquio di Microsoft

Recursively reverse a singly linked list.

Risposte di colloquio

Anonimo

19 nov 2009

Just gave this a shot. void reverse(Node node, Node previous){ Node next = node->next; node->next = previous; //point to previous node if(next != null) { reverse(next, node); } }

Anonimo

1 ott 2011

My fav :)

Anonimo

25 mag 2019

Stand up and walk backwards out of the interview room.

Anonimo

21 mar 2009

The difficulty was not so much in the question but in the on the spot nature without much time.