


Implementation methods of three PHP recursive functions and the accumulation of numbers
What are the methods to implement recursive functions? How to add numbers using a recursive function? This article mainly introduces three implementation methods of PHP recursive functions and how to implement digital accumulation. Friends in need can refer to it.
Recursive functions are a commonly used type of function in programming. Its characteristic is that the function itself can call itself, but it must be conditionally judged before calling itself, otherwise it will cause infinite calls. This article lists three recursive function implementation methods. The first uses references as parameters, the second uses global variables, and the third uses static variables. Understanding such problems requires some basic knowledge, including global variables, references, and static variables. understanding, and also need to have an understanding of their scope of action. No more nonsense here, please see below for detailed introduction.
The first method: use references as parameters
Regardless of whether references are parameters or not, you must first understand what a reference is? A reference simply means that two variables with different names point to the same storage address. Originally, each variable had its own storage address, and assignment and deletion went their own way.
Okay now, the two variables share a storage address. $a=&$b; . What it actually means is that $a has to share a room with $b regardless of its original storage address. Therefore any change to the stored address value will affect both values.
Functions originally do their own thing, even if they are functions with the same name. Recursive functions consider taking references as parameters and becoming a bridge to form data sharing between two functions. Although the two functions seem to operate on different addresses, they actually operate on the same memory address.
The code is as follows:
function test($a=0,&$result=array()){ $a++; if ($a<10) { $result[]=$a; test($a,$result); } echo $a; return $result; }
The above example is very simple. Use a<10 as the judgment condition. If the condition is true, assign a to result[]; The reference of result is passed into the function, and the a generated by each recursion will be added to the result array result. Therefore, the $result array generated in this example is Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4 ] => 5 [5] => 6 [6] => 7 [7] => 8 [8] => 9 ).
What is more interesting in this example is the value of echo a . I believe many people think it is 12345678910, but actually it is not, it is 1098765432. why? Because the function has performed the next function recursion before executing echo a.
. For the upper layer, after executing the recursive function, the echo $a, of this layer starts to be executed, and so on. Second method: Use global variablesUse global variables to complete recursive functions. Please make sure you understand what global variables are. globalDeclaring variables within a function is nothing but a reference to an external variable with the same name. The scope of the variable is still within the scope of this function. Changing the values of these variables will naturally change the values of external variables with the same name. But once
&is used, the variable with the same name is no longer a reference with the same name. It is not necessary to understand such a deep level to use global variables to implement recursive functions. You can understand recursive functions naturally by maintaining the original view of global variables. The code is as follows:
function test($a=0,$result=array()){ global $result; $a++; if ($a<10) { $result[]=$a; test($a,$result); } return $result; }
The third method: using static variables We often see
staticin classes ,Today we use it in recursive functions. Remember the role of static: initialize the variable only the first time the function is called, and retain the variable value.
:
code is as follows: function test(){
static $count=0;
echo $count;
$count++;
}
test();
test();
test();
test();
test();
? Definitely not. It’s 01234. First, call
test(), staticfor the first time to initialize
$count. After each subsequent execution, the value of $count will be retained and will not be continued. Initialization is equivalent to directly ignoring the sentence static $count=0;. Therefore, the effect of applying static to a recursive function can be imagined. Use static to initialize variables that need to be used as "bridges" between recursive functions. Each recursion will retain the value of the "bridge variable". The code is as follows:
function test($a=0){ static $result=array(); $a++; if ($a<10) { $result[]=$a; test($a); } return $result; }
Summary
The so-called recursive function focuses on how to handle the function call itself and how to ensure the required results. It can be "passed" reasonably between functions. Of course, there are also recursive functions that do not need to pass values between functions, for example:function test($a=0){ $a++; if ($a<10) { echo $a; test($a); } }
The following is a piece of code to demonstrate how PHP uses recursive functions to accumulate numbers.
The code is as follows:
<?php function summation ($count) { if ($count != 0) : return $count + summation($count-1); endif; } $sum = summation(10); print "Summation = $sum"; ?>
面对php递归函数,不必要伤脑筋,深入的理解变量引用相关知识对解决此类问题很有帮助,以上内容就是php递归函数三种实现方法及如何实现数字累加的全部内容,希望对大家今后的学习有所帮助。
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
The above is the detailed content of Implementation methods of three PHP recursive functions and the accumulation of numbers. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Python is a very powerful programming language, and many programmers choose Python as their main programming language. However, too much function nesting in the code can make the program difficult to maintain and understand. This article will explore how to solve the excessive function nesting error in Python code. A brief introduction to function nesting Function nesting refers to the process of defining another function in the body of a function. Function nesting can make the structure of the program clearer and the code easier to read and maintain. However, too many nested functions can lead to an overly complex code structure.

To optimize the performance of recursive functions, you can use the following techniques: Use tail recursion: Place recursive calls at the end of the function to avoid recursive overhead. Memoization: Store calculated results to avoid repeated calculations. Divide and conquer method: decompose the problem and solve the sub-problems recursively to improve efficiency.

Recursive functions are used in search algorithms to explore tree-like data structures. Depth-first search uses a stack to explore nodes, while breadth-first search uses a queue to traverse layer by layer. In practical applications, such as finding files, recursive functions can be used to search for a given file in a specified directory.

The exit conditions of C++ recursive functions include: Baseline conditions: Check whether the function reaches a state that can directly return results, usually judging whether a certain condition or parameter value meets the threshold. Recursion termination condition: Alternative to or in addition to the baseline condition, ensuring that the function stops after a certain number of recursive calls, by tracking the recursion depth or setting a maximum recursion depth limit.

The application of recursive functions in sorting algorithms in C++ The insertion sort and merge sort algorithms implemented by recursive functions can decompose complex problems into smaller sub-problems and solve them efficiently through recursive calls. Insertion sort: Sorts an array by inserting elements one by one. Merge sort: Divide and conquer, split the array and recursively sort the sub-arrays, and finally merge the sorted sub-arrays.

The tail recursion optimization strategy effectively reduces the function call stack depth and prevents stack overflow by converting tail recursive calls into loops. Optimization strategies include: Detect tail recursion: Check whether there are tail recursive calls in the function. Convert functions into loops: Use loops instead of tail-recursive calls and maintain a stack to save intermediate state.

How to implement factorial using recursive functions in Go language? Factorial is a common calculation in mathematics that multiplies a non-negative integer n by all positive integers smaller than it, up to 1. For example, the factorial of 5 can be expressed as 5!, calculated as 54321=120. In computer programming, we often use recursive functions to implement factorial calculations. First, we need to understand the concept of recursive functions. A recursive function refers to the process of calling the function itself within the definition of the function. When solving a problem, a recursive function will continually

This article briefly explains it, supplemented by code to further deepen understanding. Recursive Functions When a function calls itself to produce the final result, such a function is called recursive. Sometimes recursive functions are useful because they make writing code easier - some algorithms are very easy to write using the recursive paradigm, while others are not. There is no recursive function that cannot be rewritten in an iterative way, in other words, all recursive functions can be implemented iteratively through a loop, so it is usually up to the programmer to choose the best approach based on the situation at hand. The body of a recursive function usually has two parts: one part's return value depends on subsequent calls to itself, and the other part's return value does not depend on subsequent calls to itself (called the base case, or recursion boundary). As a reference example for understanding,
