Tagged Questions

See the tag entry for "theory".

learn more… | top users | synonyms

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 ...
13
votes
21answers
804 views

Programming an infinitely fast machine with infinite memory [closed]

That is a hypothetical question. If there existed a machine with infinite memory that could execute any set of instructions within the blink of an eye, what would programming that machine be like? I ...
10
votes
6answers
5k views

Why are Redirect Results not allowed in Child Actions in Asp.net MVC 2

I have some partial actions that I render with the Asp.Net Futures RenderAction method. Some of these perform redirects after the forms in them have been processed. Now that I upgraded to Asp.Net MVC ...
8
votes
2answers
384 views

Correct implementation of min

At time 0:43:15 in this Tech-Talk about D, The implementation of the min function is discussed. Concerns about "stability" and "extra shuffling (if values are equal)" when being used in some ...
8
votes
4answers
462 views

Why aren't (C++) virtual destructors enforced for a base class

Destructors aren't virtual by default to not hurt when its not needed, which is fine. But in case of a base class derived class scenario, is there any use case for not having a virtual destructor? If ...
8
votes
1answer
220 views

P=NP?-Problem: What are the most promising methods?

I know that P=NP has not been solved up to now, but can anybody tell me something about the following: What are currently the most promising mathematical / computer scientific methods that could be ...
6
votes
3answers
761 views

Calling base class overridden function from base class method

public class A { public void f1(String str) { System.out.println("A.f1(String)"); this.f1(1, str); } public void f1(int i, String str) { ...
6
votes
4answers
288 views

What use cases are there for defining a new root class?

We know that in Objective-C there are two main root classes: NSObject and NSProxy. There are other roots (mainly for private and legacy purposes) like Object, and NSLeafProxy. Defining a new root ...
5
votes
3answers
194 views

Intended infinite recursion, no-return functions

Infinite recursion is most often not desired, and when it happens it usually causes a stack overflow or segfaults. But for theory's sake, and plain curiosity, I've been thinking if it'd be possible ...
4
votes
6answers
116 views

What is the result of divide by zero?

To be clear, I am not looking for NaN or infinity, or asking what the answer to x/0 should be. What I'm looking for is this: Based on how division is performed in hardware (I do not know how it is ...
4
votes
4answers
161 views

How can be interpreted code even little efficient? (theoretical)

OK, first, I dont want any kind of flamewar here or anything like it. My bigger question is more theoretical, and will include few examples. So, as I wrote, I cannot understand how can interpreted ...
4
votes
4answers
965 views

Finding prime factors to large numbers using specially-crafted CPUs

My understanding is that many public key cryptographic algorithms these days depend on large prime numbers to make up the keys, and it is the difficulty in factoring the product of two primes that ...
3
votes
5answers
93 views

Can you encode to less bits when you don't need to preserve order?

Say you have a List of 32-bit Integers and the same collection of 32-bit Integers in a Multiset (a set that allows duplicate members) Since Sets don't preserve order but List do, does this mean we ...
2
votes
1answer
42 views

How to skolemize multiple combinations of universal and existential quantifieres?

What is the skolemized form of (∀u∃v a(u,v)) ∧ (∀x∃y a(x,y)) ? I am unsure, because there are different perenex normal forms possible: ∀u∃v ∀x∃y (a(u,v) ∧ a(x,y)) ∀u∀x ∃v∃y (a(u,v) ∧ a(x,y)) … ...
2
votes
2answers
53 views

Why are persistent splay trees particulary useful in functional programming?

On the Splay Trees Wikipedia page it is said (in the Advantages section): Possibility of creating a persistent data structure version of splay trees—which allows access to both the previous and ...
2
votes
3answers
76 views

Is there such a thing as a reverse foreign key?

In MySQL, is there a way to specify that a.column cannot exist in b.column - a reverse foreign key? In other words: # Would not return any rows ever SELECT * FROM a INNER JOIN b ON a.column = ...
2
votes
4answers
920 views

Is there any difference between md5 and sha1 in this situation?

It is known that 1. if ( md5(a) == md5(b) ) 2. then ( md5(a.z) == md5(b.z) ) 3. but ( md5(z.a) != md5(z.b) ) where the dots concatenate the strings. EDIT --- Here you can find a ...
2
votes
5answers
126 views

Constructing regex

I use regex buddy which takes in a regex and then gives out the meaning of it from which one gets what it could be doing? On similar lines is it possible to have some engine which takes natural ...
1
vote
4answers
48 views

Size of value affecting computation time?

Say I have a Java program such: //case1 Long first = 1; Long second = 1; Long third = first - second; //case2 Long first = Long.MAX_VALUE; Long second = 100000L; Long third = first - second; Those ...
1
vote
1answer
74 views

Split operation on rope data structures

I am working on implementing the Rope data structure in C++ for completely abstract objects. The problem I am having is that I can't figure out the implementation of the critical "split" operation. ...
1
vote
3answers
70 views

Would these C-pointer operations cause problems?

Let's say I've got that: char *p = NULL; I'm sure this one would be a problem as I'd be dereferencing a NULL pointer: *p = 16; On the other hand, I think this one would be OK for I'd be getting ...
0
votes
2answers
45 views

DFA and regular languages

I've been thinking about the following and I think the answer's in the affirmative. Is it true that every subset of a DFA-acceptable language that is regular is also DFA-acceptable?
0
votes
1answer
58 views

Spider in ActionScript3

Is it theoretically possible to build a spider in ActionScript3 without using server-side middleware technologies? Nothing very advanced (only visiting an HTML page and returning the HTML as text to ...
0
votes
4answers
80 views

How would you write a program to reduce an equation?

I may be misinterpreting the exact phrasing on the question about which I've been thinking, but I'm curious as to how one would reduce an equation of multiple variables. I'm assuming factoring plays ...
0
votes
2answers
96 views

What problems or benefits would be associated with a “static this” keyword?

What I am thinking of is something like the "this" keyword but at a class level i.e. class Example { public static void main(String[] args) { assert Example.class == thisclass.class ...
0
votes
2answers
72 views

Two Different Grammars Over One Set of Outputs

Can you give me 2 different grammars which outputs the same set of words? Illustration: Given a grammar A and B over the alphabet {0,1}, if grammar A can produce the word 0101001, grammar B could as ...
0
votes
1answer
48 views

Any task-control algorithms programming practices?

I was just wondering if there's any field which concerns the task-control programming (or at least that's the way I call it). For a better explanation of task-control consider the following scenario: ...