NVIDIA Interview Question
205 Interview Reviews |
Back to all NVIDIA Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Systems Software Engineer - Intern at NVIDIA:
given linked list, display in reverse
See more for this NVIDIA Systems Software Engineer - Intern Interview
Helpful Question?
Yes |
No
Inappropriate?



0 of 0 people found this helpful
by bazooka:
public static void printReverse(node head) {
if (head.next == null) { System.out.print(head.data+" "); }
else {
printReverse(head.next);
System.out.print(head.data + " ");
}
}
Will display this in a nice order