/*function ListNode(x){ this.val = x; this.next = null; }*/ function printListFromTailToHead(head) { // write code here // 数组unshift方法该函数向数组的开头添加一个或更多元素,并返回新的长度。 /* let res = [] while(head){ res.unshift(head.val) head = head.next } return res*/ // 递...