Search Results

6
votes

Hardest Programming discipline?

Real-time embedded-device programming. …
2
votes

Correct order for control structure logic (true/false, false/true)?

In most situations, readability is more important than execution speed. I therefore try to optimize for ease of understanding, by using the following approach: All "assertion" checks are do …
3
votes

Should I prepare my code for future changes?

Yes -- by doing less. You won't know what the future requirements for your code. The best preparation for the future is not to implement anything that's not needed right away, and …
3
votes

Why would you use a message based system?

A message-based architecture de-couples producers and consumers of messages, both in time and space. This has a lot of benefits: producers and consumers can run on different machines …
4
votes

Minimizing the sum of a special function over a list

"Sorting" is usually defined using a binary comparison operator ("less-than-or-equal"). What you are looking for is the "best" permutation of a list, where "best" is defined as a criterion that is …
3
votes

Recursion or iteration?

If an algorithm can be expressed most naturally in a recursive form, and if the stack depth is small (in the log(N) range, i.e. typically <20), then by any means use recursion. …
6
votes

“Necessary” Uses of Recursion in Imperative Languages

When you are walking any kind of tree structure, for example parsing a grammar using a recursive-descent parser walking a DOM tree (e.g. parsed HTML or XML) al …
7
votes

Are salts useless for security if the attacker knows them?

Salting was introduced (or at least made popular) in UNIX /etc/passwd file, which was world-readable. It is usually assumed that the salt as well as the encrypted password is known to the cracker. …
1
vote

How does it know where my value is in memory?

Reduced to the bare metal, a variable lookup either reduces to an address that is some statically known offset to a base pointer held in a register (the stack pointer), or it is a constant address …
0
votes

Searching algorithm

You might optimize you search by observing that your collection's length must be a multiple of your pattern length. If your collection has a size that is prime, the only possible pattern length is …
1
vote

Optimization! - What is it? How is it done?

Optimizing a program means: make it run faster The only way of making the program faster is making it do less: find an algorithm tha …
1
vote

How to write an enumeration of all computable functions?

While it is not too hard to enumerate all possible expressions in some language, you won't be able to restrict these to those expressions that denote terminating functions. …