题解 | #反转链表#

反转链表

http://www.nowcoder.com/practice/75e878df47f24fdc9dc3e400ec6058ca

思路
1.递归,这道题没办法使用递归,因为没有链,只有节点,无法正确返回头节点
2.双指针,很简单。pre指针与current指针,通过一个辅助指针就可以实现挪动一步就反转一个节点
3.入栈法,也挺简单。

结果
1.双指针法
运行时间:15ms
占用内存:11012KB

2.入栈法
运行时间:15ms
占用内存:10964KB

代码
1.双指针

public class Solution {
    public ListNode ReverseList(ListNode head) {
        // 方法2-双指针法
        ListNode preNodePoint = null;
        ListNode currentNodePoint = head;

        while (currentNodePoint != null){
            ListNode tempNext = currentNodePoint.next;

            currentNodePoint.next = preNodePoint;

            preNodePoint = currentNodePoint;

            currentNodePoint = tempNext;
        }
        return preNodePoint;
    }
}

1.入栈法

import java.util.Stack;
/*
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;
        Stack<ListNode> stack = new Stack<>();
        while (head != null){
            stack.push(head);
            head = head.next;
        }

        ListNode newHeadNode = stack.peek();
        while (!stack.isEmpty()){
            ListNode lastNode = stack.pop();
            if (stack.isEmpty()) lastNode.next = null;
            else lastNode.next = stack.peek();
        }

        return newHeadNode;
    }
}
全部评论
可以递归 ''' public ListNode ReverseList(ListNode head) { if (head == null) return null; if (head.next == null) return head; ListNode last = ReverseList(head.next); head.next.next = head; head.next = null; return last; } '''
点赞 回复 分享
发布于 2021-09-16 02:43

相关推荐

04-02 14:40
浙江大学 设计
无语😓&nbsp;就喜欢找我茬,研究生怎么了&nbsp;研究生就是天才吗&nbsp;就得所有报告文件都会,最烦做表
我推的MK:是这样的,那些领导就是自己什么都不懂就把所有东西扔给你,指望白嫖你的劳动力,如果你的表现不如预期就启动攻击学历模式,这都学不会是怎么考上浙大的
点赞 评论 收藏
分享
02-05 08:49
已编辑
武汉大学 Java
野猪不是猪🐗:36k和36k之间亦有差距,ms的36k和pdd的36k不是一个概念
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务