当前位置:网站首页>Power button 206 - reverse list - the list
Power button 206 - reverse list - the list
2022-08-03 20:12:00 【Zhang Ran Ran √】
Title description
Give you the head node of the singly linked list head
, please reverse the linked list and return the reversed linked list.
Solution ideas
This is a simple question about linked lists, examining the inversion of linked lists;
We consider changing the point of the pointer, no need to create a new linked list;
Leverage a picture from Karge:
Input and output example
Code
/*** Definition for singly-linked list.* public class ListNode {* int val;*ListNode next;* ListNode() {}* ListNode(int val) { this.val = val; }* ListNode(int val, ListNode next) { this.val = val; this.next = next; }* }*/class Solution {public ListNode reverseList(ListNode head) {ListNode pre = null;ListNode tem = null;ListNode cur = head;while(cur != null){tem = cur.next;cur.next = pre;pre = cur;cur = item;}return pre;}}
边栏推荐
- Use ControlTemplate or Style from resource file in WPF .cs and find the control
- leetcode 16. 数值的整数次方(快速幂+递归/迭代)
- 涨薪5K必学高并发核心编程,限流原理与实战,分布式计数器限流
- 开源生态研究与实践| ChinaOSC
- 【STM32】标准库-自定义BootLoader
- ESP8266-Arduino编程实例-WS2812驱动
- 力扣59-螺旋矩阵 II——边界判断
- pytorch框架实现老照片修复功能详细演示(GPU版)
- EMQX Newsletter 2022-07|EMQX 5.0 正式发布、EMQX Cloud 新增 2 个数据库集成
- 单调栈及其应用
猜你喜欢
随机推荐
2022.8.2
力扣206-反转链表——链表
亚马逊云科技 Build On 2022 - AIot 第二季物联网专场实验心得
async 和 await 原来这么简单
涨薪5K必学高并发核心编程,限流原理与实战,分布式计数器限流
调用EasyCVR云台控制接口时,因网络延迟导致云台操作异常该如何解决?
EMQX Newsletter 2022-07|EMQX 5.0 正式发布、EMQX Cloud 新增 2 个数据库集成
倒计时2天,“文化数字化战略新型基础设施暨文化艺术链生态建设发布会”启幕在即
8.3模拟赛总结
高性能计算软件与开源生态| ChinaOSC
ESP8266-Arduino编程实例-WS2812驱动
JS 内置构造函数 扩展 prototype 继承 借用构造函数 组合式 原型式creat 寄生式 寄生组合式 call apply instanceof
MySQL Basics
Detailed steps for tensorflow-gpu2.4.1 installation and configuration
利用 rpush 和 blpop 实现 Redis 消息队列
模板字符串概述
Detailed AST abstract syntax tree
数学之美 第六章——信息的度量和作用
xss.haozi练习通关详解
leetcode 448. Find All Numbers Disappeared in an Array 找到所有数组中消失的数字(简单)