题解 | #反转链表#
反转链表
https://www.nowcoder.com/practice/75e878df47f24fdc9dc3e400ec6058ca
function ReverseList(pHead)
{
//主要思路就是将链表中的指向反过来,注意空的情况
// write code here
let pre=null,cur=pHead,next=null;
while(cur){
next=cur.next;
cur.next=pre;
pre=cur;
cur=next;
}
return pre;
}