1. Find out that data in a linked list is a palindrome
Sigiloso
1) Traverse the linked list .put the nodes on the stack. 2) Traverse the linked list second time and pop the node from stack.Compare them. if equal repeat 2 until stack is empty else linked list is not palindrome.