/* public class ListNode { public int val; public ListNode next; public ListNode (int x) { val = x; } }*/ class Solution { public ListNode ReverseList(ListNode pHead) { // write code here if (pHead == null || pHead.next == null) return pHead; ...