Take out a piece of paper. We’ll be programming on paper.
Implement the LinkedStack class:
public interface Stack211<E> {
boolean empty();
E peek();
E pop();
E push(E item);
}
public class LinkedStack<E> implements Stack211<E> {
private LinkedNode<E> top;
// your code here.
}
Write a public static method isPalindrome that takes one parameter of type String and returns true if the parameter is a palindrome.
public static boolean isPalindrome(String word) {
// your code goes here
}
A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward or forward.