真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何在JavaScript,Scala和ABAP里實(shí)現(xiàn)尾遞

在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞歸(Tail Recursion),針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

創(chuàng)新互聯(lián)是專(zhuān)業(yè)的阜陽(yáng)網(wǎng)站建設(shè)公司,阜陽(yáng)接單;提供成都網(wǎng)站建設(shè)、成都做網(wǎng)站,網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行阜陽(yáng)網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!

Before we start to research tail recursion, let’s first have a look at the normal recursion.

A simple factorial implementation by recursion:

function factorial(n){
  if(n ===1) {
     return 1;
  }
  return n *factorial(n -1);}

Let N = 5, see how new stack frame is created for each time of recursive call:

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

We have two stack frames now, one stores the context when n = 5, and the topmost one for current calculation: n = 4

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

Now since n equals to 1, we stop recursion. The current stack frame ( n = 1 ) will be poped up, the frame under it will be activated and become the topmost frame, with calculated result 1 passed into.

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

key note for normal recursion: during recursion, every generated stack frame is needed and could not e destroyed until the final result is calculated. The calculation is actually not started until the recursion reaches the end ( the condition n === 1 fulfills ). If N is a big integer, it will lead to huge number of stack frames and finally the “stack overflow” or “out of memory” is inevitable.

tail recursion

Source code below:

function tailFactorial(n, total) {if(n ===1)
    return total;return tailFactorial(n -1, n * total);}function factorial2(n) {
  return tailFactorial(n,1);}

There are two biggest differences compared with normal recursion:

(1) A new internal function tailFactorial is introduced here.

(2) The calculation is actually now spread within every recursive stack frame. Each frame finishes one part of calculation and pass the current result to the next frame. Once the current stack frame finishes its task, it is actually not needed any more. And thus for example the model browser can then do some optimization on those useless stack frames.

Observe the stack frame for tail recursion step by step:

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

stack popped up:

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

When N = 20, the tail recursion has a far better performance than the normal recursion:

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

Update 2016-01-11

Tail recursion implementation via Scala:

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

The interesting thing is, after the Scala code is compiled into Java Byte code, compiler will eliminate the recursion automatically:

如何在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞

Tail Recursion in ABAP

First this is the normal recursion:

REPORT zrecursion.
START-OF-SELECTION.
  DATA: lv_result TYPE int4.
  PERFORM fac USING 6 CHANGING lv_result.
  WRITE: / lv_result.
FORM fac USING iv_n TYPE int4 CHANGING cv_result TYPE int4.
  DATA: lv_n TYPE i.
  cv_result = lv_n = iv_n.
  lv_n = lv_n - 1.
  IF lv_n > 1.
    PERFORM fac USING lv_n CHANGING cv_result.
  ENDIF.
  IF lv_n = 1.
    cv_result = cv_result * lv_n.
  ELSE.
    cv_result = cv_result * iv_n.
  ENDIF.
ENDFORM.

And here comes tail recursion version:

REPORT ztail.
START-OF-SELECTION.
  DATA: lv_result TYPE int4.
  PERFORM fac USING 5 1 CHANGING lv_result.
  WRITE: / lv_result.
FORM fac USING iv_n TYPE int4 iv_acc TYPE int4 CHANGING cv_result TYPE int4.
  DATA: lv_n          TYPE i,
        lv_accumulate TYPE i.
  IF iv_n < 1.
    cv_result = 1.
  ELSEIF iv_n = 1.
    cv_result = iv_acc * iv_n.
  ELSEIF iv_n > 1.
    lv_n = iv_n - 1.
    lv_accumulate = iv_acc * iv_n.
    PERFORM fac USING lv_n lv_accumulate CHANGING cv_result.
  ENDIF.
ENDFORM.

關(guān)于在JavaScript, Scala和ABAP里實(shí)現(xiàn)尾遞歸(Tail Recursion)問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。


網(wǎng)頁(yè)標(biāo)題:如何在JavaScript,Scala和ABAP里實(shí)現(xiàn)尾遞
網(wǎng)站地址:http://weahome.cn/article/pspchc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部