Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 631385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T19:57:33+00:00 2026-05-13T19:57:33+00:00

As far as I know recursion is very elegant but unefficient in OOP and

  • 0

As far as I know recursion is very elegant but unefficient in OOP and procedural programming (see the wonderful “High Order perl”, Mark Jason Dominus). I had some informations that in functional programming recursion is fast – keeping its elegance and simplicity. Could someone confirm and possibly amplify this? I am thinking in terms of XSLT and Haskell (high on my next-language-to-learn list)

Thanks

Daniel

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T19:57:33+00:00Added an answer on May 13, 2026 at 7:57 pm

    Tail recursion is iteration in any decent functional language implementation. Here’s an example using GHC Haskell. A simple program to add a sequence of numbers. It begins as the composition of several recursive functions:

    import qualified Data.Vector as U
    
    main = print (U.sum (U.enumFromTo 1 (10000000 :: Int)))
    

    Which the compiler optimizes into a single tail recursive function (in a source-to-source transformation):

    loop x y = case y <= y 10000000 of
          False -> x
          True  -> loop (x + y) (y + 1)
    

    This recursive function is then compiled into a straight forward loop:

    loop:
        .Lc216:
                cmpq $10000000,%rsi
                jle .Lc219
                movq %r14,%rbx
                movq (%rbp),%rax
                jmp *(%rax)
        .Lc219:
                addq %rsi,%r14
                incq %rsi
                jmp loop
    

    Or with the GHC LLVM backend, additional optimizations are applied to the imperative representation of the program:

        loop:
            leaq    1(%rsi), %rax
            addq    %rsi, %r14
            cmpq    $10000001, %rax
            jge     .LBB1_5
            addq    $2, %rsi
            addq    %rax, %r14
        test:                                # %tailrecurse
            cmpq    $10000001, %rsi
            jl      loop
    

    Note how the tail recursive label is tagged.

    So we had a pipeline of recursive functions, which were compiled to a single tail recursive function, which was compiled to a single imperative loop using no stack. And 8 instructions in the end.

    And that is why both function composition, and recursion, are extremely efficient in good, optimizing function languages.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 304k
  • Answers 304k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Resources in iframes/frames live in their own context and you… May 13, 2026 at 8:55 pm
  • Editorial Team
    Editorial Team added an answer ^.*(?=.{8,})(?=.*[a-zA-Z])(?=.*\d)(?=.*[!#$%&? "]).*$ --- ^.* : Start (?=.{8,}) : Length (?=.*[a-zA-Z])… May 13, 2026 at 8:55 pm
  • Editorial Team
    Editorial Team added an answer Matching links what? Their HREF attribute? The link display text?… May 13, 2026 at 8:55 pm

Related Questions

As far as I know There are 4 ways to solve recurrence equations :
Here is a template I call to generate a menu, and it kinda breaks.
This morning, I was reading Steve Yegge's: When Polymorphism Fails , when I came
I have a WinForm TreeView Control that displays the Parent Child relationship of CaseNotes(I
I'm working through Real World Haskell , and at the moment doing the exercises

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.