Introduction to Recursive Programming by Manuel Rubio-Sanchez
The other hard course for many young CS students was the course where you learned functional programming, including recursive programming.
Other results
ART: Recursive Techniques in Programming by D. W. Barron
Textbooks of computer science often illustrate the power of what they call 'recursive' programming with a simple tree-growing procedure.
Учебники информатики часто иллюстрируют мощность того, что они называют "рекурсивным" программированием, простыми процедурами рисования деревьев.
Unlike some other functional programming languages, Lisp provides for both recursive and iterative programming styles.
The simple definition is that a recursive program in a programming language is one that calls itself (just as a recursive function in mathematics is one that is defined in terms of itself).
В языках программирования рекурсивной программой называется программа, которая обращается сама к себе (подобно тому, как в математике рекурсивная функция определяется через понятия самой этой функции).
The recursive definition of a function helps illustrate how it operates in programming.
In programming, generating the power set can be done using recursive functions.
В программировании генерация множества подмножеств может быть выполнена с помощью рекурсивных функций.
Many programming languages use a recursive definition to explain functions that call themselves.
A recursive function call can simplify complex problems in programming.
Рекурсивный вызов функции может упростить сложные задачи в программировании.
Dynamic programming can reduce the time complexity of many recursive problems.
Understanding a recursive function is essential for mastering advanced programming concepts.
The concept of dynamic programming is essential for optimizing recursive algorithms effectively.