Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a problem (from Introduction to Automata Theory, Languages and Computer by Hopcroft, Motwani and Ullman) to write a regular expression that defines a language consisting of all strings of 0s and 1s not containing the substring 011.

Is the answer (0+1)* - 011 correct ? If not what should be the correct answer for this?

share|improve this question
4  
If you are giving up after an hour, I suggest you try harder and do some searching. – AMissico Apr 17 '10 at 9:58
I'm not giving you the answer but try this: Draw a finite state machine (graph) that accepts 011 as an input and then negate it (all accepting states are none accepting and none accepting are accepting). You should be able to solve the regular expression from there as it also is a finite state machine. – mkorpela Apr 17 '10 at 10:02
are looking for all strings that do not contain 011, or all strings apart from the string 011? mkorpela's comment is for the latter, I think you are wanting the former. – RJFalconer Apr 17 '10 at 10:28
@BlueNovember: I wanted the former. – Prasoon Saurav Apr 17 '10 at 11:21
Well that same trick works for that as well, Draw a finite state machine (graph) that accepts any string that contains 011 ... – BCS Apr 17 '10 at 14:30
show 1 more comment

2 Answers

Automata diagram

share|improve this answer
As you mentioned automata, I thought I'd draw some, as they're so fun! :). Both are deterministic finite state. I'll be happy to answer questions on their construction if they're not explanatory enough. (Or correct any mistakes). Hope this helps! – RJFalconer Apr 17 '10 at 11:11
3  
You have no arrow indicating the starting states! (-1 from the teacher) But we'll assume the leftmost shall we. The second is right on the money, the first is wrong. If you only accept exactly 011, all the arrows towards the leftmost state should go toward the righmost state in stead, because in those cases 011 can never be achieved any more. – NomeN Apr 17 '10 at 11:56
Yes, you are correct. I have fixed the image. It would have previously rejected (some) strings that ended in 011. – RJFalconer Apr 18 '10 at 16:39

If you are looking for all strings that do not have 011 as a substring rather than simply excluding the string 011:

A classic regex for that would be:

1*(0+01)*

Basically you can have as many ones at the beginning as you want, but as soon as you hit a zero, it's either zeros, or zero-ones that follow (since otherwise you'd get a zero-one-one).

A modern, not-really-regular regex would be:

^((?!011)[01])*$

IF, however, you want any string that is not 011, you can simply enumerate short string and wildcard the rest:

λ+0+1+00+01+10+11+(1+00+010)(0+1)*

And in modern regex:

^(?!011)[01]*$
share|improve this answer
λ+0+1+00+01+10+11+(1+00+010)(0+1)* how did you reach to this RE? – Prasoon Saurav Apr 17 '10 at 11:22
The first part is an enumeration of all strings that are shorter than 3 chars. The second part are strings with which 011 can't start, followed by arbitrary data. – Max Shawabkeh Apr 17 '10 at 11:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.