search
HomeBackend DevelopmentPHP TutorialDetailed explanation of single chain reversal using recursion and non-recursion

This article describes how to achieve single-chain inversion using recursion and non-recursion. There may be many students who don’t know much about what single-chain inversion is, so let’s cut the nonsense and go directly Read this article!
The question gives hints that both recursive and iterative algorithms can be used.
Because I don’t have a deep understanding of recursion, I first use iteration to write the algorithm. The head node in the question is considered to be the first node containing data
Question idea: start from the head node, traverse backward, and follow the order The reversal of the chains between nodes is gradually realized one by one.
First try to use 2 pointers to complete the operation, but fail

class Solution {
public:       
ListNode* reverseList(ListNode* head) { 
ListNode* pre = NULL;
  while(head -> next)
  {
 pre = head;
 head = head -> next;
 head -> next = pre; 
  }
  return head;
};

The reason is as follows: During the reversal process, head ->next has been reversed and cannot continue to After traversing, so adding a pointer and using 3 pointers to complete the operation

class Solution {
public:       
ListNode* reverseList(ListNode* head) { 
ListNode* pre = NULL;
  while(head)
  {
 ListNode* next = head -> next;
 head -> next = pre;//head是尾结点,指针置空
 head = next;
 pre = head; 
  }
  return pre;           //head = NULL
};

recursion will not happen. Please refer to Discuss to understand.
The idea is as follows: through recursion, the head node is continuously traversed backwards until the termination condition: stops after reaching the tail node.
The code is as follows:

class Solution {
public:       
ListNode* reverseList(ListNode* head) { 
//终止条件,达到尾结点停止
if(head == NULL || head ==NULL)
return head;
else
{
//头结点向后移动
ListNode* temp = reverList(head->next);
head->next->next = head;   //1
head->next = NULL;         //2
}
return temp;
};

The status presented when the recursive termination condition is reached is as follows:




The status after returning to the previous level of recursion is as follows:


AfterCommentsAfter the two lines of code 1 and 2, the status is as follows


It can be seen that the position of the head node is related to the number of recursion levels, and temp is The position of the reversed head node never moves, thus achieving the reversal effect.
Although I can understand the recursive code, I don't know how to design it yet, and I am still a novice.

##Related articles:

PHP implementation Single chainTable flip operation example



The above is the detailed content of Detailed explanation of single chain reversal using recursion and non-recursion. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在PHP中实现SEO优化如何在PHP中实现SEO优化May 20, 2023 pm 01:30 PM

随着互联网的发展,SEO(SearchEngineOptimization,搜索引擎优化)已经成为了网站优化的重要一环。如果您想要使您的PHP网站在搜索引擎中获得更高的排名,就需要对SEO的内容有一定的了解了。本文将会介绍如何在PHP中实现SEO优化,内容包括网站结构优化、网页内容优化、外部链接优化,以及其他相关的优化技巧。一、网站结构优化网站结构对于S

如何反转和倒序 PHP 数组如何反转和倒序 PHP 数组Sep 05, 2023 am 08:28 AM

如何反转和倒序PHP数组在PHP中,数组是一种常用的数据结构,能够存储和操作大量的数据。有时我们需要对数组进行反转或者倒序操作,以满足特定的需求。本文将介绍如何使用PHP对数组进行反转和倒序操作,并给出相应的代码示例。一、反转数组反转数组是指将数组中的元素按照原来的顺序进行相反的重新排列。PHP提供了多种方法来实现数组的反转,以下介绍两种常用的

在PHP中如何实现物联网开发?在PHP中如何实现物联网开发?May 12, 2023 am 11:51 AM

随着物联网技术的发展和普及,越来越多的应用场景需要使用PHP语言进行物联网开发。PHP作为一种广泛应用于Web开发的脚本语言,它的易学易用、开发速度快、可扩展性强等特点,使其成为开发物联网应用的一种优秀选择。本文将介绍在PHP中实现物联网开发的常用技术和方法。一、传输协议和数据格式物联网设备通常使用TCP/IP或UDP协议进行数据传输,而HTTP协议是一个优

如何在PHP中实现CRM系统如何在PHP中实现CRM系统May 20, 2023 pm 12:31 PM

随着企业的发展,客户管理变得越来越重要。为了提高客户满意度和忠诚度,越来越多的企业采用客户关系管理系统(CRM)来帮助其管理客户关系。而PHP是一种流行的编程语言,因其简单易学、灵活和强大而被广泛应用于Web开发。那么,如何在PHP中实现CRM系统呢?本文将为您介绍实现CRM系统的步骤和技巧。Step1:需求分析在开始开发CRM系统之前,您需要进行需求分析

如何使用PHP中的array_reverse函数反转数组键值顺序如何使用PHP中的array_reverse函数反转数组键值顺序Jun 26, 2023 pm 01:35 PM

在PHP程序设计当中,数组是一个非常常用的数据结构,通过键值对的形式,我们可以方便地访问和处理数据。然而,在某些情况下,我们需要反转数组键值的顺序,以达到更好的数据处理效果。PHP中提供了一个专门的函数,即array_reverse函数,可以非常方便地实现数组反转。接下来,本文将向读者介绍如何使用PHP中的array_reverse函数反转数组键值的顺序。一

翻译:对于M个查询,反转给定字符串的范围翻译:对于M个查询,反转给定字符串的范围Aug 25, 2023 pm 08:09 PM

Inthisproblem,wewillperformMreversequeriesonthegivenstringaccordingtothearrayvalues.Thenaïveapproachtosolvingtheproblemistoreverseeachstringsegmentaccordingtothegivenarrayvalue.Theoptimizedapproachusesthelogicthatwhenwereversethesamesubstringtwotimes

学习Go语言中的字典函数并实现键值对的反转学习Go语言中的字典函数并实现键值对的反转Aug 02, 2023 pm 12:55 PM

学习Go语言中的字典函数并实现键值对的反转字典是Go语言中非常常用的数据结构之一,它提供了一种键值对的存储方式,并且允许我们根据键快速地检索或修改对应的值。在很多实际应用中,我们可能需要对字典中的键值对进行反转操作,即将原来的键作为值,原来的值作为键。本文将介绍Go语言中字典相关函数的用法,并实现这一反转操作。首先,我们需要了解Go语言中字典的基本用法。字典

使用队列反转二叉搜索树中的路径的C++代码使用队列反转二叉搜索树中的路径的C++代码Sep 14, 2023 pm 07:21 PM

例如,给定一个二叉搜索树,我们需要从特定键反转其路径。寻找解决方案的方法在这种方法中,我们将创建一个队列并推送所有节点,直到获得根节点。p>示例&nbsp;#include<bits/stdc++.h>usingnamespacestd;structnode{&nbsp;&nbsp;intkey;&nbsp;&nbsp;structnode*left,*right;};structnode*newNode(intitem){&nb

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.