Is it possible to start learning algorithms in a declarative (functional, to be more specific) way? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is it possible to start learning algorithms in a declarative (functional, to be more specific) way?

By algorithms, I mean dynamic programming, greedy algorithms etc. Almost all of us are probably familiar with imperative programming, which makes things easier when it comes to algorithms. I just want to learn algorithms and functional programming at the same time, but I can't figure out how to do so. Or no one would spend time trying that?

5th Jun 2019, 5:25 PM
Khoa Dan
Khoa Dan - avatar
2 Answers
+ 1
If you don't use classes, only functions, then it's already functional programming, because you order all your instructions in functions, which you'll call later. While learning different algorithms, I surprisingly observed that only functions are used - OOP or stuff like that. Check for the Greedy technic or recursivity.
5th Jun 2019, 6:04 PM
Charlie S
Charlie S - avatar
0
Thanks for your answer, I didn't notice that. I use functions when learning algorithms all the time.
6th Jun 2019, 6:17 AM
Khoa Dan
Khoa Dan - avatar