栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

leetcode-day8:Reverse Linked List(反转链表)

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

leetcode-day8:Reverse Linked List(反转链表)

206. Reverse linked List

链表:听说过两天反转链表又写不出来了?

Given the head of a singly linked list, reverse the list, and return the reversed list.
Example 1:

Input: head = [1,2,3,4,5]
Output: [5,4,3,2,1]

Example 2:

Input: head = [1,2]
Output: [2,1]

Example 3:

Input: head = []
Output: []

Constraints:

The number of nodes in the list is the range [0, 5000].
-5000 <= Node.val <= 5000

JAVA代码实现:


class Solution {
    public ListNode reverseList(ListNode head) {
		ListNode cur = head;
		ListNode pre = null;
		ListNode temp = null;
		//1->2->3->null
		//null 1->2->3->null
		while(cur!=null){
			temp=cur.next;
			cur.next=pre;
			pre=cur;
            cur=temp;
			
		}
        return pre;
    }
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/591967.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号