Harshal   :
check for

*a*acc*b*cdef*a*ccc*b*cc

will fail for acc*b*


Best Regards
Ashish Goel
"Think positive and find fuel in failure"
+919985813081
+919966006652


On Mon, Feb 6, 2012 at 7:42 AM, Harshal <hc4...@gmail.com> wrote:

>
> 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 algogeeks@googlegroups.com.
> To unsubscribe from this group, send email to
> algogeeks+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to