Tagged Questions
The theory tag has no wiki summary.
374
votes
56answers
32k views
Storing Images in DB - Yea or Nay?
So I'm using an app that stores images heavily in the DB. What's your outlook on this? I'm more of a type to store the location in the filesystem, than store it directly in the DB.
What do you think ...
163
votes
25answers
13k 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 ...
150
votes
31answers
7k views
Are there any O(1/n) algorithms?
Are there any O(1/n) algorithms?
Or anything else which is less than O(1)?
122
votes
14answers
22k 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 ...
101
votes
13answers
14k views
What is a lambda (function)?
For a person without a comp-sci background, what is a lambda in the world of Computer Science?
71
votes
12answers
22k views
What is an NP-complete problem?
What is an NP-complete problem? Why is it such an important topic in computer science?
68
votes
7answers
5k views
What's “P=NP?”, and why is it such a famous question?
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 ...
49
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 ...
48
votes
13answers
3k 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 ...
47
votes
24answers
7k views
Understanding recursion
Guys I'm having major trouble understanding recursion at school. Whenever the prof is talking about it I seem to get it but as soon as I try it on my own it completely blows my brains. I was trying to ...
42
votes
15answers
39k 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 ...
41
votes
8answers
1k views
Why is <br> a tag rather than an HTML entity?
Why indeed? Wouldn't something like &br; be more appropriate?
41
votes
7answers
10k views
What is Turing Complete?
What does the expression Turing Complete means? Can you give a simple explanation, without going into too much theoretical details?
40
votes
8answers
4k 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 ...
36
votes
32answers
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 ...
36
votes
9answers
7k 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 ...
35
votes
16answers
1k 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 ...
33
votes
1answer
2k 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 ...
33
votes
13answers
1k 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.
...
33
votes
10answers
6k 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 ...
31
votes
8answers
13k 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 ...
30
votes
11answers
5k views
difference between string object and string literal
what is difference between
String str = new String("abc");
and
String str = "abc";
27
votes
9answers
1k 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 ...
26
votes
32answers
2k 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 ...
24
votes
5answers
3k 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.
23
votes
1answer
513 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 ...
23
votes
13answers
4k 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 ...
22
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 ...
22
votes
10answers
1k 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 ...
22
votes
9answers
1k 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 ...
19
votes
2answers
692 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 ...
19
votes
9answers
4k 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 ...
19
votes
9answers
2k 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 ...
18
votes
12answers
2k 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 ...
18
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 ...
17
votes
6answers
451 views
The shortest path between two integers by adding or subtracting 5, 7, and 12
Here's the description of this problem:
You are given two integers a and b. You want to find the shortest sequence of operations necessary to transform a into b, where at each step you are ...
17
votes
9answers
790 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 ...
17
votes
17answers
2k 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 ...
17
votes
7answers
3k views
Where do I start learning about image processing and object recognition?
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 ...
16
votes
9answers
1k 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 ...
16
votes
4answers
620 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 ...
16
votes
3answers
1k 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 ...
16
votes
21answers
1k views
How do you apply Theoretical Computer Science?
Why is theory useful? Do you ever use it in your day-to-day coding? For example, we learned about the halting problem, Turing machines, reductions, etc... a lot of classmates are saying it's abstract ...
15
votes
6answers
485 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 ...
15
votes
5answers
671 views
Why is cloning (in .NET) so difficult?
In the past I had the need to clone objects, only to find that they don't implement a Clone() method, forcing me to do it by hand (create a new instance and copy all properties from the original to ...
15
votes
24answers
5k views
Computer Science and Psychology [closed]
I'm a Computer Science major with a minor in Psychology. For an upcoming paper I have to present an interesting topic that touches both CS and Psychology". Uhm yeah, it really is that vague.
Now, ...
15
votes
3answers
648 views
What is the most underrated or little known but useful algorithm?
I'm looking for the one algorithm or data structure which is so unknown yet useful that you think it's a horrible oversight by the computer science or programming community. If only we could all ...
15
votes
7answers
715 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 ...
15
votes
7answers
3k 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 ...
15
votes
8answers
4k 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 ...