Amazon.com Interview Question
1,222 Interview Reviews |
Back to all Amazon.com Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Support Engineer at Amazon.com:
Helpful Question?
Yes |
No
Inappropriate?
Answers & Comments (1)
Members can
answer or comment on this question
–
Join Now (It's Free) or
Sign In



0 of 0 people found this helpful
by Interview Candidate:
node* cur = *head;
*head = null;
while (cur) {
node* next = cur->next;
cur->next = *head;
*head = cur;
cur = next;
}
}