function ReverseList(pHead){ if(pHead == null || pHead.next == null){ return pHead; } ...