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 number of a's and odd number of b's where the character set={a,b}.

Thanks in advance...

link|improve this question
1  
You should post your solution so that people can suggest specific improvements. – Ian Henry Sep 13 '10 at 7:52
What is the Regex supposed to achieve? How many sequences of 'a's and 'b's are there? Can you show how you solved it and that may help in determining a regex that could do the same. – Lazarus Sep 13 '10 at 7:53
You dont want to use RegEx here - the assignment should be solved with a simple "dont!" and a few lines of code. – atamanroman Sep 13 '10 at 9:27
feedback

4 Answers

One way to do this is to pass it through two regular expressions making sure they both match (assuming you want to use regular expressions at all, see below for an alternative):

^b*(ab*ab*)*$
^a*ba*(ba*ba*)*$

Anything else (and, in fact, even that) is most likely just an attempt to be clever, one that's generally a massive failure.

The first regular expression ensures there are an even number of a with b anywhere in the mix (before, after and in between).

The second is similar but ensures that there's an odd number of b by virtue of the starting a*ba*.


A far better way to do it is to ignore regular expressions altogether and simply run through the string as follows:

def isValid(s):
    set evenA to true
    set oddB to false
    for c as each character in s:
        if c is 'a':
            set evenA to not evenA
        else if c is 'b':
            set oddB to  not oddB
        else:
            return false
    return evenA and oddB

Though regular expressions are a wonderful tool, they're not suited for everything and they become far less useful as their readability and maintainability degrades.


For what it's worth, a single-regex answer is:

(aa|bb|(ab|ba)(aa|bb)*(ba|ab))*(b|(ab|ba)(bb|aa)*a)

but, if I caught anyone on my team actually using a monstrosity like that, they'd be sent back to do it again.

This comes from a paper by one Greg Bacon. See here for the actual inner workings.

link|improve this answer
feedback
  1. (bb)*a(aa)*ab(bb)*
  2. ab(bb)* a(aa)*
  3. b(aa)*(bb)* .
    .
    .
    .
    .
    .

there can be many such regular expressions. Do you have any other condition like "starting with a" or something of the kind (other than odd 'b' and even 'a') ?

link|improve this answer
feedback

a string starting and ending in different letters is as a(a+b)b+b(a+b) if language is defined over set{a,b}

link|improve this answer
feedback

Something like this:

`(aa)*b(bb)*`
link|improve this answer
what about bbbaa or babba for example? – Man of One Way Nov 15 '11 at 22:29
feedback

Your Answer

 
or
required, but never shown

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