The tag has no wiki summary.

learn more… | top users | synonyms

205
votes
25answers
18k views

Big-O for Eight Year Olds?

I'm asking more about what this means to my code. I understand the concepts mathematically, I just have a hard time wrapping my head around what they mean conceptually. For example, if one were to ...
182
votes
31answers
10k views

Are there any O(1/n) algorithms?

Are there any O(1/n) algorithms? Or anything else which is less than O(1)?
162
votes
15answers
29k views

What is a lambda (function)?

For a person without a comp-sci background, what is a lambda in the world of Computer Science?
161
votes
13answers
29k views

What is a y-combinator?

A y-combinator is a comp-sci concept from the "functional" side of things. Most programmers don't know much at all about them, if they've even heard about them. What is a y-combinator? How do they ...
113
votes
12answers
46k views

What is an NP-complete problem?

What is an NP-complete problem? Why is it such an important topic in computer science?
92
votes
9answers
23k views

What is Turing Complete?

What does the expression "Turing Complete" mean? Can you give a simple explanation, without going into too many theoretical details?
90
votes
10answers
11k views

What is referential transparency?

What does the term referential transparency mean? I've heard it described as "it means you can replace equals with equals" but this seems like an inadequate explanation.
90
votes
7answers
10k views

What's “P=NP?”, and why is it such a famous question? [closed]

The question of whether P=NP is perhaps the most famous in all of Computer Science. What does it mean? And why is it so interesting? Oh, and for extra credit, please post a proof of the statement's ...
79
votes
13answers
20k views

Way to go from recursion to iteration

I've used recursion quite a lot on my many years of programming to solve simple problems, but I'm fully aware that sometimes you need iteration due to memory/speed problems. So, sometime in the very ...
59
votes
10answers
26k views

What good are SQL Server schemas?

I'm no beginner to using SQL databases, and in particular SQL Server. However, I've been primarily a SQL 2000 guy and i've always been confused by schemas in 2005+. Yes, I know the basic definition ...
57
votes
7answers
6k views

“const correctness” in C#

I'm a heavy C++ user who dabbles in C# in his spare time. I'm also one of those const-correctness nazis and so not being able to do this easily in C# grates a little. The point of const-correctness ...
56
votes
13answers
52k views

Wolfram's Rule 34 in XKCD [closed]

The hover "joke" in #505 xkcd touts "I call rule 34 on Wolfram's Rule 34". I know what rule 34 is in Internet terms and I've googled up who Wolfram is but I'm having a hard time figuring out what ...
53
votes
23answers
3k views

Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?

The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device. This was the only suggestion ...
52
votes
14answers
4k views

The Halting Problem in the Field

When have you ever personally come upon the halting problem in the field? This can be when a co-worker / boss suggested a solution which would violate the fundamental limits of computation, or when ...
51
votes
1answer
3k views

The recognizing power of “modern” regexes

What class of languages do real modern regexes actually recognise? Whenever there is an unbounded length capturing group with a back-reference (e.g. (.*)_\1) a regex is now matching a non-regular ...
44
votes
10answers
11k views

In Laymen's terms, what is the pumping lemma

So I saw this question and was curious as to what the Pumping Lemma was (Wikipedia wasn't much help). I understand that its basically a theoretical proof that must be true in order for a language to ...
44
votes
9answers
14k views

What is the point of interfaces in PHP?

Interfaces allow you to create code which defines the methods of classes that implement it. You cannot however add any code to those methods. Abstract classes allow you to do the same thing, along ...
41
votes
9answers
10k views

How to write a simple database engine

I am interested in learning how a database engine works (i.e. the internals of it). I know most of the basic data structures taught in CS (trees, hash tables, lists, etc.) as well as a pretty good ...
39
votes
33answers
5k views

Why can't programs be proven?

Why can't a computer program be proven just as a mathematical statement can? A mathematical proof is built up on other proofs, which are built up from yet more proofs and on down to axioms - those ...
35
votes
16answers
2k views

Why is number of bits always(?) a power of two?

We have 8-bit, 16-bit, 32-bit and 64-bit hardware architectures and operating systems. But not, say, 42-bit or 69-bit ones. Why? Is it something fundamental that makes 2^n bits a better choice, or is ...
34
votes
13answers
2k views

Is the time complexity of the empty algorithm O(0)?

So given the following program: Is the time complexity of this program O(0)? In other words, is 0 O(0)? I thought answering this in a separate question would shed some light on this question. ...
30
votes
9answers
2k views

Monad theory and Haskell

Most tutorials seem to give a lot of examples of monads (IO, state, list and so on) and then expect the reader to be able to abstract the overall principle and then they mention category theory. I ...
28
votes
3answers
11k views

Simple enough explanation of a Distributed Hash Table (DHT)

Could any one give an explanation on how a DHT works. Nothing too heavy, just the basics.
28
votes
9answers
2k views

What are some good computer science resources for a blind programmer?

I'm a totally blind individual who would like to learn more of the theory aspect of computer science. I've had an intro data structures class and the general intro programming but would like to learn ...
27
votes
4answers
16k views

How do I check if a directed graph is acyclic?

How do I check if a directed graph is acyclic? And how is the algorithm called? I would appreciate a reference. Niko
27
votes
10answers
2k views

Is it possible for a computer to “learn” a regular expression by user-provided examples?

Is it possible for a computer to "learn" a regular expression by user-provided examples? To clarify: I do not want to learn regular expressions. I want to create a program which "learns" a regular ...
27
votes
12answers
6k views

How to test randomness (case in point - Shuffling)

First off, this question is ripped out from this question. I did it because I think this part is bigger than a sub-part of a longer question. If it offends, please pardon me. Assume that you have a ...
26
votes
32answers
3k views

What are your favorite metaphors for technical concepts? [closed]

At the risk of getting downvoted I'm going to ask this anyway. What are your favorite metaphors for technical concepts? My most recent one I used was when a customer didn't understand why we would ...
26
votes
19answers
5k views

How would you access Object properties from within an object method? [closed]

What is the "purist" or "correct" way to access an object's properties from within an object method that is not a getter/setter method? I know that from outside of the object you should use a ...
26
votes
10answers
4k views

What is fuzzy logic?

I'm working with a couple of AI algorithms at school and I find people use the words Fuzzy Logic to explain any situation that they can solve with a couple of cases. When I go back to the books I just ...
26
votes
1answer
597 views

Code exercising the unique possibilities of each edge of the lambda calculus

I can't explain the term lambda cube much better than Wikipedia does: [...] the λ-cube is a framework for exploring the axes of refinement in Coquand's calculus of constructions, starting from ...
25
votes
10answers
2k views

Text editor theory

As I'm always dissatisfied with existing editors, a project I always wanted to start is my own text editor. However doing text editing is serious business. Besides analyzing the source code of ...
25
votes
2answers
935 views

Can liftM differ from liftA?

According to the Typeclassopedia (among other sources), Applicative logically belongs between Monad and Pointed (and thus Functor) in the type class hierarchy, so we would ideally have something like ...
24
votes
13answers
22k views

How to program a fractal?

I'm do not have any experience with programming fractals. Offcours i've seen the famous Mandelbrot images and such. Can you provide me with simple algorithms for fractals. The language doesn't ...
22
votes
7answers
7k views

Coupling and cohesion

I'm trying to boil down the concepts of coupling and cohesion to a concise definition. Can someone give me a short and understandable explanation (shorter than the definitions on Wikipedia here and ...
21
votes
12answers
3k views

Developing my own RDBMS [closed]

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 ...
21
votes
6answers
1k views

“Flat is better than nested” - for data as well as code?

This question got me thinking: should we apply the principle that "flat is better than nested" to data as well as to code? Even when there is a "logical tree structure" to the data? In this case, I ...
21
votes
10answers
2k views

circles and triangles problem

I have an interesting problem here I've been trying to solve for the last little while: I have 3 circles on a 2D xy plane, each with the same known radius. I know the coordinates of each of the three ...
20
votes
6answers
2k views

Why can Conway’s Game of Life be classified as a universal machine?

I was recently reading about artificial life and came across the statement, "Conway’s Game of Life demonstrates enough complexity to be classified as a universal machine." I only had a rough ...
20
votes
7answers
7k views

Where do I start learning about image processing and object recognition? [closed]

I'm interested in writing some basic computerized object recognition application, so I figure I need some theoretical background in image processing algorithms, along with some AI for decision making ...
20
votes
9answers
3k views

Purpose of singletons in programming

This is admittedly a rather loose question. My current understanding of singletons is that they are a class that you set up in such a way that only one instance is ever created. This sounds a lot ...
19
votes
17answers
3k views

When does Big-O notation fail?

What are some examples where Big-O notation[1] fails in practice? That is to say: when will the Big-O running time of algorithms predict algorithm A to be faster than algorithm B, yet in practice ...
19
votes
14answers
2k views

Did you apply computational complexity theory in real life?

I'm taking a course in computational complexity and have so far had an impression that it won't be of much help to a developer. I might be wrong but if you have gone down this path before, could you ...
19
votes
3answers
3k views

Is the C99 preprocessor Turing complete?

After discovering the Boost preprocessor's capabilities I found myself wondering: Is the C99 preprocessor Turing complete? If not, what does it lack to not qualify?
19
votes
5answers
707 views

What is the origin of “launch the missiles”?

In the context of functional programming, a typical example of a side effect is "launch the missiles". Where does that expression come from historically?
19
votes
3answers
2k views

What is the Zipper data structure and should I be using it?

The question is simple: I cannot understand the Zipper data structure. My question is related to its uses with a Tree. I want to understand how can I change the tree node using zipper. And how not ...
18
votes
7answers
848 views

What is a DSL and where should I use it?

I'm hearing more and more about domain specific languages being thrown about and how they change the way you treat business logic, and I've seen Ayende's blog posts and things, but I've never really ...
18
votes
1answer
3k views

How do streaming resources fit within the RESTful paradigm?

(I'm learning here, so bear with me here...) With a RESTful service you can create, read, update, and delete resources. This all works well when you're dealing with something like a database assets ...
17
votes
4answers
815 views

Why is (a | b ) equivalent to a - (a & b) + b?

I was looking for a way to do a BITOR() with an Oracle database and came across a suggestion to just use BITAND() instead, replacing BITOR(a,b) with a + b - BITAND(a,b). I tested it by hand a few ...
17
votes
10answers
4k views

Bootstrapping a compiler: why?

I understand how a language can bootstrap itself, but I haven't been able to find much reference on why you should consider bootstrapping. The intuitive answer is that the language you're writing ...

1 2 3 4 5 18