当前位置:网站首页>Sword finger offer 24 Reverse linked list
Sword finger offer 24 Reverse linked list
2022-07-02 17:12:00 【anieoo】
Original link : The finger of the sword Offer 24. Reverse a linked list
solution:
Direct traversal of linked list :
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* reverseList(ListNode* head) {
ListNode *cur = head;
ListNode *pre = NULL;
while(cur != NULL) {
ListNode *tmp = cur->next;
cur->next = pre;
pre = cur;
cur = tmp;
}
return pre;
}
}; recursive :
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* reverseList(ListNode* head) {
if(head == NULL || head->next == NULL) return head;
ListNode *tail = reverseList(head->next);
head->next->next = head;
head->next = NULL;
return tail;
}
};边栏推荐
- LSF basic command
- 剑指 Offer 24. 反转链表
- Kubernetes three open interfaces first sight
- Talk about an experience of job hopping and being rejected
- 智能垃圾桶(五)——点亮OLED
- 伟立控股港交所上市:市值5亿港元 为湖北贡献一个IPO
- In MySQL and Oracle, the boundary and range of between and precautions when querying the date
- Dgraph: large scale dynamic graph dataset
- Weili holdings listed on the Hong Kong Stock Exchange: with a market value of HK $500million, it contributed an IPO to Hubei
- js删除字符串中的子串
猜你喜欢

Seal Library - installation and introduction

基于多元时间序列对高考预测分析案例

Tech Talk 活动预告 | 基于Amazon KVS打造智能视觉产品

Weili holdings listed on the Hong Kong Stock Exchange: with a market value of HK $500million, it contributed an IPO to Hubei

TCP congestion control details | 2 background

Changwan group rushed to Hong Kong stocks: the annual revenue was 289million, and Liu Hui had 53.46% voting rights

Exploration of mobile application performance tools

【Leetcode】14. Longest Common Prefix

【云原生】简单谈谈海量数据采集组件Flume的理解

Ap和F107数据来源及处理
随机推荐
linux安装postgresql + patroni 集群问题
IP address translation address segment
<四> H264解码输出yuv文件
Ap和F107数据来源及处理
OpenPose的使用
ThreadLocal
对接保时捷及3PL EDI案例
Detailed explanation of @accessories annotation of Lombok plug-in
Learning Weekly - total issue 60 - 25th week of 2022
IP地址转换地址段
What is generics- Introduction to generics
Rock PI Development Notes (II): start with rock PI 4B plus (based on Ruixing micro rk3399) board and make system operation
Error when uploading code to remote warehouse: remote origin already exists
酒仙网IPO被终止:曾拟募资10亿 红杉与东方富海是股东
配置基于接口的ARP表项限制和端口安全(限制用户私自接入傻瓜交换机或非法主机接入)
Serial port controls steering gear rotation
綠竹生物沖刺港股:年期內虧損超5億 泰格醫藥與北京亦莊是股東
The macrogenome microbiome knowledge you want is all here (2022.7)
R及RStudio下载安装教程(超详细)
MySQL port