vote up 8 vote down star
3

Functional programming seems to be a paradigm in computer science which has more and more echo.

I wonder which kind of problems are better solved with a functional programming approach rather than with a more traditional object oriented approach.

Thank you.

flag

57% accept rate
Solving lots of <s>problems</s> <s>sub-problems</s> sub-sub-problems... ;) – Abyss Knight Oct 17 '08 at 18:51
I'm not sure I'd describe, especially from a computing science point of view, OO as being the "more traditional" approach. OO originated with Simula in the late '60s; functional with LISP in the late '50s. Smalltalk, the first language explicitly labeled "object oriented," was developed contemporaneously in the '70s with ML, which could be considered the start of the second generation of functional programming languages. – Curt Sampson Jun 18 at 6:58

13 Answers

vote up 4 vote down check

Functional programming is best suited for most kinds of problems, including anything you would normally use object-oriented programming for, except for maybe problems that require the storing of a lot of state or other side effects. Aside from that, FP handles complex problems much more gracefully than OOP, as a lot of it comes from a mathematical background (starting with the lambda calculus). You have much more flexibility as far as abstraction and composition go. An object-oriented program with a lot of design patterns could be refactored using more functional constructs which will allow you to do the same thing without the boilerplate structures that design patterns make you write. In addition to mathematics and parsing, FP has also been extensively used in artificial intelligence (particularly Lisp).

link|flag
vote up 4 vote down

Functional programming is great for creating programs that can undergo parallel execution since they discourage the use of global states.

link|flag
vote up 5 vote down

Functional languages are used a lot in maths and statistics.

link|flag
vote up 2 vote down

I agree with Galwegian -

"Functional languages are used a lot in maths and statistics."

However, those are not the only uses. As functional programming languages become more mainstream, youll likely starting finding business classes/libraries/software written written in these languages.

link|flag
vote up 3 vote down

To further on the parallel execution point, functional languages tend to be good for graphical modelling, such as ray-tracing.

link|flag
vote up 2 vote down

Pretty much anything that has a lot of maths.

link|flag
vote up 1 vote down

If you're writing C++ templates, you're working in a pure functional language.

link|flag
vote up 7 vote down

This is close to these other questions.

Why functional languages?

What are the benefits of functional programming?

link|flag
vote up 2 vote down

For example the functional language ML is nice for implementing compilers and other applications manipulating trees.

link|flag
vote up 1 vote down

XSLT is an example of a functional programming language for doing transformations of data or documents represented as XML -- admittedly a very verbose and very limited one. If I remember correctly XQuery is also purely functional. The tricks is that without any concept of global state they arely on a host program to supply the data and consume their results. This helps keep XSLT programs (stylesheets) pure and reusable, but you need to add some sort of (imperative) framework to use them as part of a general-purpose processing system.

link|flag
vote up 1 vote down

Basic spreadsheets can be seen as functional programs... :)

link|flag
vote up 1 vote down

Data Structures. Example: Compare the imperative implementation of a Fibonacci Heap (often used as a priority queue) with the functional implementation. Often the functional code will be less than 100 lines of code whereas the imperative implementation can be many more lines of code.

link|flag
vote up 1 vote down

and parsing...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.