Now that we’ve looked at what an algorithm is, we can go a bit deeper and take on one of the most common section of algorithms: Recursion Recursive algorithms are actually quite easy to understand and we often use it intuitively in our daily life. Recursion only means, that a function calls itself. To illustrate […]
Tag: Algorithm
What Are Algorithms?
Although I guess most of you know exactly what an algorithm is, I felt anyways that I needed to give a small definition, before I’ll be able to cover specific (types) of algorithms. When dealing with problems in computer science one generally looks at the ‘theory’ behind solving the problem and the actual implementation separately. […]