Initialize
i = index of first 'a'
j = index of first 'b'
n = array length.
MinDist = n+1;
while(i < n && j < n){
MinDist = min(MinDist, abs(i-j))
if(i < j)
i = index of next 'a'
else
j = index of next 'b'
}
--
Best Regards,
Harshal Choudhary.
--
You received this message because you are subscribed to the Google Groups
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/algogeeks?hl=en.