Tagged Questions
The imperative-programming tag has no wiki summary.
19
votes
13answers
4k views
Haskell vs. procedural programming in the real world
These days I'm getting seriously into functional programming.
While I'm really excited about Haskell and the possibilities it seems to offer, I can also see now that it is going to take me a while ...
18
votes
10answers
2k views
Are we in a functional programming fad?
I use both functional and imperative languages daily, and it's rather amusing to see the surge of adoption of functional languages from both sides of the fence. It strikes me, however, that it looks ...
14
votes
3answers
1k views
Idiomatic clojure for progress reporting?
How should I monitor the progress of a mapped function in clojure?
When processing records in an imperative language I often print a message every so often to indicate how far things have gone, e.g. ...
13
votes
5answers
5k views
what is the difference between declarative and imperative programming
I have been searching the web looking for a definition for declarative and imperative programming that would shed some light for me. However the language used at some of the resources that I have ...
11
votes
4answers
1k views
Why is Haskell (sometimes) referred to as “Best Imperative Language”?
(I hope this question is on-topic -- I tried searching for an answer but didn't find a definitive answer. If this happens to be off-topic or already answered, please moderate/remove it.)
I remember ...
7
votes
7answers
903 views
Is functional Clojure or imperative Groovy more readable?
OK, no cheating now.
No, really, take a minute or two and try this out.
What does "positions" do?
Edit: simplified according to cgrand's suggestion.
(defn redux [[current next] flag] [(if flag ...
6
votes
11answers
2k views
Mixing object-oriented and functional programming
What languages are available that promote both object-oriented and functional programming? I know that any language that supports first-class functions can be considered functional, but I'm looking ...
5
votes
8answers
590 views
Is functional programming a subset of imperative programming?
One of the main characteristics of functional programming is the use of side-effectless functions. However, this can be done in an imperative language also. The same is true for recursion and lambda ...
4
votes
2answers
248 views
Explain the algorithm to solve 'longest increasing subsequence' problem
I have been trying to understand this algorithm for past two hours, but can't seem to get it. Can someone please explain it in easy to understand manner?
function lis_length(a)
n := a.length
...
4
votes
9answers
460 views
Translate imperative control flow with break-s/continue-s to haskell
Consider the following imperative code which finds the largest palindrome among products of 3-digit numbers (yes, it's the one of the first tasks from "Project of [outstanding mathematician of 18th ...
4
votes
7answers
550 views
F# remove imperative code - quick help
I'm new to functional world and appreciate help on this one.
I want to SUPERCEDE ugly imperative code from this simple function, but don't know how to do it.
What I want is to randomly pick some ...
3
votes
6answers
536 views
Is there a functional algorithm which is faster than an imperative one?
I'm searching for an algorithm (or an argument of such an algorithm) in functional style which is faster than an imperative one.
I like functional code because it's expressive and mostly easier to ...
3
votes
5answers
344 views
Are programs in functional languages more likely to have stack overflows?
I am starting to learn ocaml, and am really appreciating the power of recursion in the language. However, one thing that I am worried about is stack overflows.
If ocaml uses the stack for function ...
2
votes
3answers
82 views
Can someone recommend a project with good C style programming for reference?
This question sounds cliché, but I've been thinking about it lately.
I've learned to program C in a bad style (hard to read, hard to maintain) in my college with introductory courses. When I became a ...
2
votes
4answers
101 views
Is there a standardized way to transform functional code to imperative code?
I'm writing a small tool for generating php checks from javascript code, and I would like to know if anyone knows of a standard way of transforming functional code into imperative code?
I found this ...
2
votes
4answers
85 views
Coming from an OOP background, what would be some C programs/libraries to help me get the “C way”?
I have been doing OOP (C++/Java/PHP/Ruby) for a long time and really have a hard time imagining how large programs and libraries such as Linux or Apache can be written entirely in an imperative style. ...
1
vote
1answer
40 views
How to make mouse events handling easier?
Sometimes I have to implement a feature like customized drag & drop. The code may goes like this:
bool mouse_down = false;
Vec2 mouse_pos;
void on_mouse_down() {
mouse_down = true;
mouse_pos ...
1
vote
3answers
120 views
For which purposes is F# preferred to other languages and what are its strength? [closed]
Hallo everybody,
I would like to know what is the purpose of the F# language, what are the contexts where it is preferred to other languages and why. For instance, what are typical applications that ...
1
vote
2answers
116 views
Fascinated by FP but still think imperative, how do I think functional?
Like most ppl, I started with and still do a lot of imperative code(mostly Java, Ruby, Javascript).
I've never been a big fan of OO, either because I never understood it properly or because I don't ...
1
vote
4answers
53 views
Statements and state
Is there any deeper meaning in the fact that the word "statement" starts with the word "state", or is that just a curious coincidence? Note that english is not my native language, so the answer might ...
1
vote
3answers
491 views
What is meant by imperative and interrogative code
My Manager asked me to code in ASP.net. What is meant my imperative and interrogative code.
How it related to programmers?
0
votes
1answer
46 views
What's the expression equivalent of the Assignment statement called?
In imperative programming, using statements, you do stuff like:
a = 10
b = a * 2
print a # 20
I have been thinking that the equivalent, in expressions, should be something like this:
print ...
0
votes
0answers
37 views
Action Broadcasting - am I going to hell for this?
In imperative languages, I've always loved the higher-order functions implemented in arrays, especially "for_each". But I didn't get to use them much because almost all of my needs are similar to
for ...
0
votes
1answer
56 views
Declarative / Imperative Cross Over
I'm looking for a way to gain reference to a class that was instanciated via XML, but I need reference to it in imperative code. I usually do this via the datacontext of the control, but in this ...
0
votes
2answers
32 views
Does anyone else think instance variables are problematic in database-backed applications?
It occurs to me that state control in languages like C# is not well supported.
By this, I mean, it is left upto the programmer to manage the state of in-memory objects. A common use-case is that ...
-4
votes
2answers
1k views
How is Java an 'imperative' programming language and not a 'declarative' one?
Specially in comparison to C/C++ (which are declarative), how is Java imperative?