/
14.12.2018 at 03:09 pm
Cuttings

Recursion, Succinctly Put

The rules of recursion.

... There are 3 rules for recursion:

  1. A recursive algorithm must have a base case.

  2. A recursive algorithm must change its state and move toward the base case.

  3. A recursive algorithm must call itself, recursively.

A base case just means that it has an end point, something to stop it looping infinitely, such as when a particular variable reaches zero.

Changing its state means that through each iteration it gets closer to this variable.

Calling itself just means that you call the function that you're currently in with this new data to pass in.

- Reddit
Reference

Filed under:
#
Words: 103 words approx.
Time to read: 0.41 mins (at 250 wpm)
Keywords:
, , , , , , , , ,

Other suggested posts

  1. 31.07.2022 at 10:08 pm / Hades And (Non-Ending) Desk Jobs
  2. 03.07.2022 at 05:15 pm / The Unpreparedness Apology
  3. 10.06.2022 at 07:44 pm / Teach Thy Tongue to Say: 'I Do Not Know'
  4. 25.08.2020 at 08:42 am / Triple Buffered Painters
  5. 04.06.2020 at 05:25 pm / Music and Neural Pathways
  6. 29.01.2020 at 10:48 am / Code & Shame
  7. 22.07.2015 at 12:00 am / Fair Judges of Fair Play
  8. 12.07.2015 at 12:00 am / José Mujica's Humility
  9. 18.06.2015 at 12:00 am / Crisp Tweets
  10. 05.07.2014 at 12:00 am / Jack Hamm on (Artistic) Practice
© Wan Zafran. See disclaimer.