当前位置:网站首页>206. reverse linked list
206. reverse linked list
2022-07-01 04:05:00 【Sit at a sunny window and drink tea alone】

Train of thought Change pointer direction

Main idea : Traverse all nodes , Change the direction of the node
- The initial state : last Point to null, head Point to the head node

- Define a nextHead node , Used to store head.next The node of , Otherwise, once the direction changes , head.next The node is lost

- Then change head Direction of edges of , head.next = last

- last and head Move forward one step

- Then cycle the above process
class Solution {
public ListNode reverseList(ListNode head) {
ListNode last = null;
while(head != null) {
// preservation head.next , as a result of When the direction of the edge changes , head.next Nodes of will be lost , So save it in advance
ListNode nextHead = head.next;
// Change the direction of the edge
head.next = last;
// last and head Move forward one step
last = head;
head = nextHead;
}
return last;
}
}
边栏推荐
- 熊市下的Coinbase:亏损、裁员、股价暴跌
- 【历史上的今天】6 月 30 日:冯·诺依曼发表第一份草案;九十年代末的半导体大战;CBS 收购 CNET
- Access denied for user ‘ODBC‘@‘localhost‘ (using password: NO)
- Network metering - application layer
- 互联网行业最佳产品开发流程 推荐!
- [TA frost wolf \u may- hundred people plan] 1.2.1 vector basis
- 有效的 @SuppressWarnings 警告名称
- 嵌入式系统开发笔记81:使用Dialog组件设计提示对话框
- 72. 编辑距离
- ThreeJS开篇
猜你喜欢

Coinbase in a bear market: losses, layoffs, stock price plunges

【TA-霜狼_may-《百人計劃》】2.3 常用函數介紹

不同性能测试工具的并发模式

多次跳槽后,月薪等于老同事的年薪
![[TA frost wolf \u may- hundred people plan] 1.3 secret of texture](/img/dc/ce2819258632cdcf2e130a4c05600e.png)
[TA frost wolf \u may- hundred people plan] 1.3 secret of texture

In the innovation community, the "100 cities Tour" of the gold warehouse of the National People's Congress of 2022 was launched
![[ta- frost wolf \u may- hundred people plan] 1.1 rendering pipeline](/img/af/4498382bc47d8c9ae41c407b9d1265.png)
[ta- frost wolf \u may- hundred people plan] 1.1 rendering pipeline

25.K个一组翻转链表

熊市下的Coinbase:亏损、裁员、股价暴跌

[TA frost wolf \u may - "hundred people plan"] 2.1 color space
随机推荐
Chen Yu (Aqua) - Safety - & gt; Cloud Security - & gt; Multicloud security
Its appearance makes competitors tremble. Interpretation of Sony vision-s 02 products
Browser top loading (from Zhihu)
【TA-霜狼_may-《百人计划》】1.1 渲染流水线
【TA-霜狼_may-《百人计划》】1.4 PC手机图形API介绍
【发送邮件报错】535 Error:authentication failed
“目标检测“+“视觉理解“实现对输入图像的理解
嵌入式系統開發筆記80:應用Qt Designer進行主界面設計
[untitled] Li Kou 496 Next larger element I
【历史上的今天】6 月 30 日:冯·诺依曼发表第一份草案;九十年代末的半导体大战;CBS 收购 CNET
171. excel table column No
Recommend the best product development process in the Internet industry!
8. string conversion integer (ATOI)
In the innovation community, the "100 cities Tour" of the gold warehouse of the National People's Congress of 2022 was launched
采购数智化爆发在即,支出宝'3+2'体系助力企业打造核心竞争优势
Class and object finalization
mysql 函数 变量 存储过程
[TA frost wolf \u may - "hundred people plan"] 2.1 color space
MySQL function variable stored procedure
166. fractions to decimals