Tagged Questions

-1
votes
1answer
32 views

BNF Grammar Derivation

I want to apply rules of BNF Grammar to produce derivation for : a_Num
11
votes
14answers
1k views

Code Golf: Automata

I made the ultimate laugh generator using these rules. Can you implement it in your favorite language in a clever manner? Rules: On every iteration, the following transformations …
12
votes
16answers
2k views

Good way to learn Scala?

I've recently become interested in learning Scala, my first thought was a simple compiler, but I don't have very good knowledge of Automata theory. So my question is: what's a go …
0
votes
1answer
35 views

Cellular Automaton on WPF

Hi, currently im taking a Master degree course in Computer Sciences, and i´d like to implement a Cellular Automata in WPF. The rendering performance must be enough to display a lat …
2
votes
4answers
70 views

Making an index for a search by PHP

How can you search only unique words with PHP such that I can learn the basics in making the search? I have had a few problems in making a multidimensional array for questions. M …
0
votes
2answers
270 views

How can I construct a grammar that generates this language?

I'm studying for a finite automata & grammars test and I'm stuck with this question: Construct a grammar that generates L: L = {a^n b^m c^m+n|n>=0, m>=0} I believe my …
0
votes
2answers
119 views

Where can I find sample automata and turing machines?

I'm studying for an automata test on a course that's heavily based on jflap. Trouble is we don't have much documentation and the sample automata that I've found on jlap like this a …
7
votes
6answers
444 views

Advanced Formal logic / Automata Theory textbook

I know this is more a Math/Formal Language/Automata/Computer science question than an a programming one, but I hope I can get some advice on a comprehensible textbook (not an indec …
7
votes
2answers
250 views

How should Chomsky’s Hierarchy and Turing Machines influence language design?

I'm currently studying for a discrete mathematics test in which we are learning Chomsky's hierarchy and the type of automatas that recognize each level of the hierarchy. I'm being …
12
votes
10answers
617 views

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

Is it possible 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 reg …
3
votes
2answers
184 views

Can I Determine the Set of First Chars Matched by Regex Pattern?

I would like to be able to compute the set of all characters which may be matched as the first character in a string by a given instance of java.util.regex.Pattern. More formally, …