反转链表

  • 对于反转链表的思想感觉很别扭,需要多看,多想,克服困难
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode reverseList(ListNode head) {
        ListNode resultNode = null;
        ListNode ahead = head;
        ListNode before = null;
        if(ahead == null || ahead.next ==null)
            return ahead;;
        while(ahead !=null){
            ListNode nextNode = ahead.next;
            if(nextNode==null)
                resultNode = ahead;
            
            ahead.next = before;
            before = ahead;
            ahead = nextNode;
        }
        return resultNode;
    }
}

程序需要的变量:
1) 结果链表resultNode =null
2) 新的头结点ahead = head
3) 新的尾节点before = null

过程:
1、首先边界判断,如果只有一个节点或者没有节点,直接输出为原始链表ahead = head;
2、使用循环方式,依次的将原始链表节点进行翻转

全部评论

相关推荐

牛可乐121381:卖课的
点赞 评论 收藏
分享
02-16 13:52
门头沟学院 Java
给🐭🐭个面试机会吧:嘿,mvbatis
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务