Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Can you sum up "recursion" in programming in 5 words or less?

No this isn't a homework assignment, I'm just trying to help explain it, and I don't know how without giving a half hour speech and lots of code

4 Answers

Relevance
  • 1 decade ago
    Favorite Answer

    reusing something over and over

  • 1 decade ago

    A function that calls itself.

    An alternative to iteration.

    Iteration using function calls.

    5 words or less certainly limits the imagination.

    The best way I've been able to explain it to others is a visual diagram of the function call stack so that they can see the path the program takes going down to the base case and then returning back through the call stack.

  • Me M
    Lv 5
    1 decade ago

    Algorithm calling itself until complete.

  • Anonymous
    1 decade ago

    it is a function that calls itself

Still have questions? Get your answers by asking now.