/* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } }*/ public class Solution { public ListNode ReverseList(ListNode head) { // return reverseNodeMethod1(head); return reverseNodeMethod2(head); } public ListNode reverseNodeMethod1(ListNode head){ if (head ...