NC78:反转链表/LeetCode:206.反转链表
反转链表
https://www.nowcoder.com/practice/75e878df47f24fdc9dc3e400ec6058ca?tpId=188&&tqId=38547&rp=1&ru=/activity/oj&qru=/ta/job-code-high-week/question-ranking
思路
实现代码
/* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } }*/ public class Solution { public ListNode ReverseList(ListNode head) { // 判断链表为空或长度为1的情况 if(head == null || head.next == null){ return head; } ListNode pre = null; // 当前节点的前一个节点 ListNode next = null; // 当前节点的下一个节点 while( head != null){ next = head.next; // 记录当前节点的下一个节点位置; head.next = pre; // 让当前节点指向前一个节点位置,完成反转 pre = head; // pre 往右走 head = next;// 当前节点往右继续走 } return pre; } }