/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ #include <iterator> #include <list> #include <stack> class Solution { public: ListNode* ReverseList(ListNode* pHead) { //*************************************************...