/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) {} };*/ class PalindromeList { public: bool chkPalindrome(ListNode* A) { // write code here struct ListNode* head,*tail,*tmp; head = tail = (struct ListNode*)malloc(sizeo...