Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
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 ...
28
votes
19answers
2k views

Why should I learn algorithms? [closed]

This is my first qestion in the forum. I am a student of Software Engineering. Today I asked this question to my teacher in class. But did not get any satisfactory answer Can any one please give me ...
20
votes
9answers
7k views

What is the exact problem with multiple inheritance?

I can see people asking all the time whether multiple inheritance should be included into the next version of C# or Java. C++ folks, who are fortunate enough to have this ability, say that this is ...
17
votes
5answers
992 views

The while language

For my theory of computing languages class, we got a homework assignment to implement a piece of code in a language that only has while statements for flow control (no if statements). This is mainly ...
15
votes
4answers
359 views

What is the theory behind mutable and immutable types?

One of the things that I admire about Python is its distinction between mutable and immutable types. Having spent a while programming in c before coming to Python, I was astonished at how easily ...
15
votes
6answers
1k views

what exactly is a “register machine”?

From http://code.google.com/p/unladen-swallow/wiki/ProjectPlan I quote: "Using a JIT will also allow us to move Python from a stack-based machine to a register machine, which has been shown to ...
13
votes
6answers
1k views

Can all iterative algorithms be expressed recursively?

If not, is there a good counter example that shows an iterative algorithm for which there exists no recursive counterpart? If it is the case that all iterative algorithms can be expressed ...
13
votes
4answers
582 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 ...
13
votes
7answers
1k views

often used seldom defined terms: lvalue

What is an lvalue?
13
votes
5answers
584 views

Computer Science for the elderly

I learned C++ when it was C with classes. I find myself increasingly disliking new technologies like XML and Garbage collection. On the other hand, I have discovered scripting languages like Lua and ...
13
votes
15answers
2k views

Learning Resources on Parsers, Interpreters, and Compilers

I've been wanting to play around with writing my own language for a while now (ostensibly for the learning experience) and as such need to be relatively grounded in the construction of Parsers, ...
12
votes
6answers
527 views

What does it mean for a language to be statically typed?

My understanding is that it means that one can potentially write a program to formally prove that a program written in a statically typed language will be free of a certain (small) subset of defects. ...
9
votes
9answers
2k views

What is the best book for Programming Language Theory?

What is a good book that covers the topics of grammars (context-free and context-sensitive) and their notations (EBNF, BNF, etc), syntax, type and programming language theory, etc? I'm not really ...
8
votes
4answers
165 views

regexp-like library for matrix pattern search

Is there a library (in any language) that can search patterns in matrixes like regular expressions work for strings ? Something like regular expresions for matrixes, or any matrix pattern search ...
8
votes
3answers
163 views

Free online tutorial on the 'thought process' behind developing a programming language?

When I read about different computing languages on here, I always wonder what motivated the original decision to develop something new instead of just extending a language which already exists. ...
7
votes
12answers
636 views

Why semicolon is not required after a curled bracket?

I know that a semicolon is required after a statement (I'm talking about Java, C++, and similar languages), but is not required after a curled bracket. Why so? if (a > b) printf("hello!"); // ...
7
votes
3answers
126 views

Out of curiosity, how many people here know how regular expressions are compiled? [closed]

I'm going over this in my theory class, and I'm curious as to how many people here know what regular expression compilation actually is. I've looked online, and it seems to me that this is a more ...
7
votes
10answers
982 views

Can a language be turing complete but incomplete in other ways?

For example, are there certain things when writing an operating system that cannot be accomplished in a turing complete language?
7
votes
4answers
1k views

Why in C# does order matter for static initialization?

This code has the well defined behavior in C# of not working: class Foo { static List<int> to = new List<int>( from ); // from is still null static IEnumerable<int> from = ...
6
votes
3answers
516 views

Is HTML a context-free language?

Reading some related questions made me think about the theoretical nature of HTML. I'm not talking about XHTML-like code here. I'm talking about stuff like this crazy piece of markup, which is ...
6
votes
4answers
2k views

Regular expression for strings with even number of a's and odd no of b's

Im having a problem in solving the problem:- Its an assignment, i solved it, but it seems to be too long and vague, Can anyboby help me please...... Regular expression for the strings with even ...
6
votes
1answer
709 views

Context Free Language Question (Pumping Lemma)

I know this isn't directly related to programming, but I was wondering if anyone know how to apply the pumping lemma to the following proof: Show that L={(a^n)(b^n)(c^m) : n!=m} is not a context ...
5
votes
2answers
242 views

What exactly are administrative redexes after CPS conversion?

In the context of Scheme and CPS conversion, I'm having a little trouble deciding what administrative redexes (lambdas) exactly are: all the lambda expressions that are introduced by the CPS ...
4
votes
2answers
113 views

Is the language of all strings over the alphabet “a,b,c” with the same number of substrings “ab” & “ba” regular?

Is the language of all strings over the alphabet "a,b,c" with the same number of substrings "ab" & "ba" regular? I believe the answer is NO, but it is hard to make a formal demonstration of it, ...
4
votes
4answers
122 views

Building an OOP programming language from “Atoms”

There is a kind of beauty in supervening relationships. Consider the following examples: Atoms are composed of subatomic particles, molecules are composed of atoms, cells are composed of molecules, ...
4
votes
4answers
395 views

Besides Logo and Emacs Lisp, what are other pure dynamically scoped languages?

What are some examples of a dynamically scoped language? And what are the reasons for choosing that design? Is it because it is easy to implement?
3
votes
3answers
91 views

What is the definition of a “true” multidimensional array and what languages support them?

Most of the programming books I have ever read, have the following line: "X language does not support true multidimensional arrays, but you can simulate (approximate) them with arrays of arrays." ...
3
votes
2answers
132 views

Language Theory - Loop Invariants - Pre/Post Conditions

I am working on a revision assignment for an exam on language theory. A couple of the exercises that we can do involve writing pre and post conditions and loop invariants for a couple of methods. I ...
3
votes
6answers
160 views

Is there any object-oriented static typed language with variables with few types?

I like reading about programming theories, so could you tell me if there is any object-oriented static typed language that allow variables to have a few types? Example in pesudocode: var value: ...
3
votes
0answers
204 views

Which formal language class are XML and JSON with unique keys (they are not context-free) [closed]

Please don't answer here but at cstheory.stackexchange, where I copied this question to! JSON and XML are both frequently called to be context-free languages - they are both specified mainly by a ...
3
votes
1answer
84 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?
3
votes
6answers
395 views

What is the advantage of having this/self pointer mandatory explicit?

What is the advantage of having this/self/me pointer mandatory explicit? According to OOP theory a method is supposed to operate mainly (only?) on member variables and method's arguments. Following ...
2
votes
4answers
95 views

Algorithm to solve Turing's “Halting problem‍​”

"Alan Turing proved in 1936 that a general algorithm to solve the halting problem for all possible program-input pairs cannot exist" Can I find a general algorithm to solve the halting problem ...
2
votes
1answer
60 views

Proving language properties

I am taking a course on the formal foundations of programming, one of things we have covered is proving certain properties of languages, i have done most of the work, but I am stuck on these two ...
2
votes
2answers
52 views

Grammar to recognize postfix formulas

I'm trying to create a postfix to infix converter, and I'm unable to create the grammar for postfix formulas. I've been also looking for it for a while without success.. What grammar could I use to ...
2
votes
3answers
92 views

How to call a structured language that cannot loop or a functional language that cannot return

I created a special-purpose "programming language" that deliberately (by design) cannot evaluate the same piece of code twice (ie. it cannot loop). It essentially is made to describe a flowchart-like ...
2
votes
1answer
81 views

Parse list with minimal separators

I have a language with statements of 4 kinds: s00, s01, s10, s11 where a leading 1 means initial keyword, a trailing 1 means terminated, and I have a separator ";". I can terminate any statement with ...
2
votes
2answers
206 views

Context Free Grammar Issue

For starters this is a homework question. I have an idea but I am still not able to get the correct answer. I'm not asking for the answer I am just asking for help to answer the question. I am ...
2
votes
1answer
160 views

Theory of formal languages - Automaton

I'm wondering about formal languages. I have a kind of parser : It reads à xml-like serialized tree structure and turn it into a multidimmensionnal array. My point is on the similarities between the ...
2
votes
1answer
197 views

How do you classify languages into regular, context free, and phrase-structure?

If you're given a language, how do you figure out if it's regular, CF but not regular, or phrase-structure but not CF? Is there a good way to attack this problem? I could randomly try to make FAs or ...
2
votes
1answer
175 views

Textual Protocol which is not a regular language?

The usual way to represent way the grammar associated with a textual network protocol is using ABNF. Just like any EBNF-related meta-syntax, ABNF enables to describe context-free grammars. These ...
2
votes
3answers
776 views

How do I design the transition functions for this pushdown automaton?

I'm studying for a test on PDA, and I want to know how to design a pushdown automaton that recognizes the following language: L = {a^max(0,n-m)b^n a^m| n,m >=0} How can I design a transition ...
1
vote
4answers
197 views

Efficient representation of functions

Function type A -> B in some sense is not very good. Though functions are first class values, one often cannot freely operate them due to efficiency problems. You can't apply too many transformations ...
1
vote
1answer
94 views

SLR(1) Parser and epsilon involved

Let's suppose I have the following grammar: S → X X → a | ϵ If that grammar wouldn't have ϵ involved, I would construct the first state like: S' → .S S → .X X → .a but what about the ϵ symbol? ...
1
vote
1answer
392 views

Prove that the set of regular languages is a proper subset of the set of the context-free languages

I was brushing up (not homework)on some computation-theory and came accross this problem: How can you prove that the set of regular languages is a proper subset of the set of the context-free ...
1
vote
1answer
438 views

Algorithm for regular expression intersection with cfg

Im looking for an algorithm which outputs if the intersection of a regular expression and a contex free grammar is empty or not. I know that this problem is decidable, however, I cannot find any ...
1
vote
1answer
49 views

How are “pattern languages” related to “regular languages”?

I always thought that there was no real language class below type-3 grammars, but now I found the "Language identification in the limit" model which allows learning of pattern languages but not ...
1
vote
6answers
655 views

What is the possible benefit (if any) of allowing recursive contructors?

In Java, constructors cannot be recursive. Compile time error: "recursive constructor invocation". Let's assume that we did not have this restriction. Things to keep in mind: The return type of a ...
1
vote
4answers
198 views

Runtime definition

What is the runtime? And I don't mean "at run time" = as the program/script is running. I mean The <your-interpreted-language-here> runtime
1
vote
2answers
559 views

Language Evaluation question: Eager Vs. Lazy

I was reading Shriram's PLAI and this I got stuck in these questions: Can you prove that the eager and lazy regimes will always produce the same answer? (Shriram asks to look at the language he ...

1 2