Recursion

Recursion


1. Introduction

Recursion is a technique that allows us to break down a problem into one or more subproblems that are similar in form to the original problem.

 


2. Example: The Factorial

Recall that factorial, which is written n!, has the following definition:
        n! = 1 * 2 * 3 * .... * (n-2) * (n-1) * n
We can use this definition to write:
int fact(int n) {
        int i;
        int result;
       
        result = 1;
        for (i = 1; i <= n; i++) {
           result = result * i;
        }
        return result;
}
We can write a function that uses recursion as follows:
int fact(int n) {
         if (n == 1) return 1;
         return n * fact(n - 1);
}
Comparing the two versions:
  • The iterative version has two local variables; the recursive version has none.
  • The iterative version has three statements; the recursive version has one.
  • The iterative version must save the solution in an intermediate variable before it can be returned; the recursive version calculates and returns its result as a single expression.
Recursion simplifies the fact function! It does so by making the computer do more work, so that you can do less work.

 


3. Definitions

The recursive functions are characterized based on:
  1. whether the function calls itself or not (direct or indirect recursion).
  2. whether there are pending operations at each recursive call (tail-recursive or not).
  3. the shape of the calling pattern -- whether pending operations are also recursive (linear or tree-recursive).
Direct Recursion:
A function is directly recursive if it contains an explicit call to itself. For example, the function
int foo(int x) {

        if (x <= 0) return x;

        return foo(x - 1);
}
includes a call to itself, so it's directly recursive. The recursive call will occur for positive values of x.
Indirect Recursion:
A function foo is indirectly recursive if it contains a call to another function which ultimately calls foo.

The following pair of functions is indirectly recursive. Since they call each other, they are also known as mutually recursive functions.

int foo(int x) {

        if (x <= 0) return x;

        return bar(x);
}

int bar(int y) {
        return foo(y - 1);
}
Tail Recursion:
A recursive function is said to be tail recursive if there are no pending operations to be performed on return from a recursive call.

Tail recursive functions are often said to "return the value of the last recursive call as the value of the function." Tail recursion is very desirable because the amount of information which must be stored during the computation is independent of the number of recursive calls. Some modern computing systems will actually compute tail-recursive functions using an iterative process.

The "infamous" factorial function fact is usually written in a non-tail-recursive manner:

int fact (int n) { /* n >= 0 */

        if (n == 0)  return 1;

        return n * fact(n - 1);
}
Notice that there is a "pending operation," namely multiplication, to be performed on return from each recursive call. Whenever there is a pending operation, the function is non-tail-recursive. Information about each pending operation must be stored, so the amount of information is not independent of the number of calls.

The factorial function can be written in a tail-recursive way:

int fact_aux(int n, int result) {

        if (n == 1) return result;

        return fact_aux(n - 1, n * result)
}

int fact(n) {

         return fact_aux(n, 1);
}
The "auxiliary" function fact_aux is used to keep the syntax of fact(n) the same as before. The recursive function is really fact_aux, not fact. Note that fact_aux has no pending operations on return from recursive calls. The value computed by the recursive call is simply returned with no modification. The amount of information which must be stored is constant (the value of n and the value of result), independent of the number of recursive calls.
Linear and Tree Recursion:
Another way to characterize recursive functions is by the way in which the recursion grows. The two basic ways are "linear" and "tree."

A recursive function is said to be linearly recursive when no pending operation involves another recursive call to the function.

For example, the "infamous" fact function is linearly recursive. The pending operation is simply multiplication by a scalar, it does not involve another call to fact.

A recursive function is said to be tree recursive (or non-linearly recursive) when the pending operation does involve another recursive call to the function.

The Fibonacci function fib provides a classic example of tree recursion. The Fibonacci numbers can be defined by the rule:

        fib(n) = 0  if n is 0,
               = 1  if n is 1,
               = fib(n-1) + fib(n-2) otherwise
For example, the first seven Fibonacci numbers are
        Fib(0) = 0        
        Fib(1) = 1        
        Fib(2) = Fib(1) + Fib(0) = 1
        Fib(3) = Fib(2) + Fib(1) = 2
        Fib(4) = Fib(3) + Fib(2) = 3
        Fib(5) = Fib(4) + Fib(3) = 5
        Fib(6) = Fib(5) + Fib(4) = 8
This leads to the following implementation:
int fib(int n) { /* n >= 0 */

        if (n == 0) return 0;

        if (n == 1) return 1;

        return  fib(n - 1) + fib(n - 2);
}
Notice that the pending operation for the recursive call is another call to fib. Therefore fib is tree-recursive.

 


4. Converting Recursive Functions to be Tail Recursive

A non-tail recursive function can often be converted to a tail-recursive function by means of an "auxiliary" parameter. This parameter is used to form the result. The idea is to attempt to incorporate the pending operation into the auxiliary parameter in such a way that the recursive call no longer has a pending operation. The technique is usually used in conjunction with an "auxiliary" function. This is simply to keep the syntax clean and to hide the fact that auxiliary parameters are needed.

For example, a tail-recursive Fibonacci function can be implemented by using two auxiliary parameters for accumulating results. It should not be surprising that the tree-recursive fib function requires two auxiliary parameters to collect results; there are two recursive calls. To compute fib(n), call fib_aux(n 1 0)

int fib_aux(int n, int next, int result) {

  if (n == 0) return result;
  return fib_aux(n - 1, next + result, next);
}
The tree recursive fib() method is "Big O 2^n" (O(2^n)) algorithm. In other words as n increases the problem size roughly doubles. On the other hand, a linearly recursive algorithm would be O(n). In other words, the amount of work required roughly increases linearly.


References: Thomas A. Anastasio, Richard Chang.
内容概要:本文系统阐述了企业新闻发稿在生成式引擎优化(GEO)时代下的全渠道策略与效果评估体系,涵盖当前企业传播面临的预算、资源、内容与效果评估四大挑战,并深入分析2025年新闻发稿行业五大趋势,包括AI驱动的智能化转型、精准化传播、首发内容价值提升、内容资产化及数据可视化。文章重点解析央媒、地方官媒、综合门户和自媒体四类媒体资源的特性、传播优势与发稿策略,提出基于内容适配性、时间节奏、话题设计的策略制定方法,并构建涵盖品牌价值、销售转化与GEO优化的多维评估框架。此外,结合“传声港”工具实操指南,提供AI智能投放、效果监测、自媒体管理与舆情应对的全流程解决方案,并针对科技、消费、B2B、区域品牌四大行业推出定制化发稿方案。; 适合人群:企业市场/公关负责人、品牌传播管理者、数字营销从业者及中小企业决策者,具备一定媒体传播经验并希望提升发稿效率与ROI的专业人士。; 使用场景及目标:①制定科学的新闻发稿策略,实现从“流量思维”向“价值思维”转型;②构建央媒定调、门户扩散、自媒体互动的立体化传播矩阵;③利用AI工具实现精准投放与GEO优化,提升品牌在AI搜索中的权威性与可见性;④通过数据驱动评估体系量化品牌影响力与销售转化效果。; 阅读建议:建议结合文中提供的实操清单、案例分析与工具指南进行系统学习,重点关注媒体适配性策略与GEO评估指标,在实际发稿中分阶段试点“AI+全渠道”组合策略,并定期复盘优化,以实现品牌传播的长期复利效应。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值