/* 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* slow,*fast,*mid,*cur,*insertnode,*head; slow=fast=A; ...