2
votes
1answer
53 views
datatype programming
I know of "imperative" and "functional" programming but there was little I could find on "datatype" programming. Is there such a thing and how is it related to the other paradigms?
4
votes
10answers
249 views
Why does ReSharper want to use ‘var’ for everything?
I've just started using ReSharper with Visual Studio (after the many recommendations on SO). To try it out I opened up a recent ASP.NET MVC project. One of the first and most frequent things I've …
4
votes
11answers
156 views
Is there an algorithm which prints out a shuffled list without actually modifing the list?
After reading this question I started to wonder: is it possible to have a shuffling algorithm which does not modify or copy the original list?
To make it clear:
Imagine you are given a list of …
0
votes
4answers
188 views
Recursive Sets vs Recursive Functions
What s the difference between a recursive set and recursive function?
6
votes
1answer
122 views
Developing my own RDBMS
I've always been fascinated by how these huge RDBMS servers can work for months, shuffling data all around without losing it, perform all kinds of queries and generally being very complex beasts.
I …
1
vote
2answers
33 views
Not-mathematical description of NL-complexity
NL-Complexity appears to be related to NP-complexity, and i would like a non-mathematic explanation (being that i only have a passing familiarity with the level of mathematics used in that article). …
1
vote
4answers
118 views
What is the reason for not allowing in C++ a default value for a variable to be a non-static method or member of a class ?
I wanted to know why the default value for a variable for a method of a class, cannot be a non-static method or member of the same class.
Is there a reason for that ? Could not the compiler provide …
3
votes
8answers
265 views
From a coder’s perspective, what kind of project should I choose python over php for where both could do the job?
I've never used python before. I've used php for about 5 years now. I plan to learn python, but I'm not sure what for yet. If I can think of a project that might be better to do in python, I'll use …
2
votes
1answer
57 views
How to choose and set the correct loop invariant?
Hi,
I've been given the following problem about loop invariants:
Consider
x=4;
for(i=5;i<k;i++) {
a=a+x+i;
x=x*2;
}
Define the appropiate loop invariant that utilizes a closed formula for a and …
1
vote
7answers
107 views
How can I learn about compiler theory - online/free resources
I'm interested in learning - at depth - about compiler theory...
parsing
EBNF
LALR?
Are all terms I'm familiar with but don't really understand how to actually implement/use..
I'm looking for …
1
vote
2answers
22 views
Is transactions over machine boundary (via tcp-ip) possible?
Hi,
Theoretically, can one define a protocol where one machine does some remote calls on another machine (or more than one), and where in any part of the process, if any of the machines (or …
-5
votes
0answers
131 views
What is Church’s thesis? [closed]
Can anyone explain to me in a few simple English words what Church's thesis is? What is the equivalence with Turing machines? Can you also give me an example?
0
votes
3answers
37 views
How to store a list of users, and let the users know they are on that list
Im building a site where a user can add people to their "list". This list belongs to the user, but im wondering whats the best way to store/retrieve/loop through this list in a function, to show the …
9
votes
4answers
157 views
Exactly what is the difference between a “closure” and a “block”?
I've found that lots of people use the words closure and block interchangeably. Most of these people can't explain what they're talking about.
Some Java programmers (even ones from really expensive …
3
votes
7answers
171 views
How to write an enumeration of all computable functions?
Motivation: I'd like to be able to use toy functional programming in languages without first-order functions, by using natural numbers instead of functions.
A universal function is a function f : N …
