牛客网-反转链表

简介: 牛客网-反转链表

题目描述

输入一个链表,反转链表后,输出新链表的表头。

解法1

/*
public class ListNode {
    int val;
    ListNode next = null;
    ListNode(int val) {
        this.val = val;
    }
}*/
public class Solution {
    public ListNode ReverseList(ListNode head) {
        if(head == null || head.next==null){
            return head;
        }
        ListNode left=head;
        ListNode mid=left.next;
        ListNode right = mid.next;
        while(right!=null){
            mid.next = left;
            left = mid;
            mid = right;
            right = right.next;
        }
        mid.next = left;
        head.next = null;
        head = mid;
        return head;
    }
}

解法2

/*
public class ListNode {
    int val;
    ListNode next = null;
    ListNode(int val) {
        this.val = val;
    }
}*/
public class Solution {
    public ListNode ReverseList(ListNode head) {
        if(head==null || head.next==null){
            return head;
        }
        ListNode newListNode=null;
        while(head!=null){
            //把源链表进行头插法到新的node中
            ListNode old_head = head;
            head = head.next;
            old_head.next = newListNode;
            newListNode = old_head;
        }
        return newListNode;
    }
}


目录
相关文章
【每日一题】LeetCode——反转链表
【每日一题】LeetCode——反转链表
|
6月前
|
算法
【每日一题】牛客网——链表的回文结构
【每日一题】牛客网——链表的回文结构
|
6月前
Leecode之反转链表
Leecode之反转链表
【剑指offer】-反转链表-15/67
【剑指offer】-反转链表-15/67
|
6月前
牛客网-重建二叉树
牛客网-重建二叉树
41 0
|
6月前
剑指Offer LeetCode 面试题24. 反转链表
剑指Offer LeetCode 面试题24. 反转链表
25 0
|
C语言
牛客网 OR36 链表的回文结构
C语言实现的代码思路
40 0
|
存储
【牛客网】二叉树遍历(八)
【牛客网】二叉树遍历(八)
54 0