Question
Given a linked list, write a function to determine whether the list is a palindrome.
eg.
palindrome(1 -> 2 -> 3) = false
palindrome(1 -> 2 -> 1) = true
Once you think that you’ve solved the problem, click below to see the solution.
As always, remember that practicing coding interview questions is as much about how you practice as the question itself. Make sure that you give the question a solid go before skipping to the solution. Ideally if you have time, write out the solution first by hand and then only type it into your computer to verify your work once you've verified it manually. To learn more about how to practice, check out this blog post.
Solution
How was that problem? You can check out the solution in the video below.
Here is the source code for the solution shown in the video:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
private class Node { private int value; private Node next; } public boolean palindrome(Node n) { Node curr = n; Node runner = n; Stack<Integer> stack = new Stack<Integer>(); while (runner != null && runner.next != null) { stack.push(curr.value); curr = curr.next; runner = runner.next.next; } if (runner != null) curr = curr.next; while (curr != null) { if (stack.pop().intValue() != curr.value) return false; curr = curr.next; } return true; } |
Did you get the right answer to this coding interview question? Please share your thoughts in the comments below.