Hey,

There is a basic Dp solution.

have two indexes. one at 0 and another at n-1(n is the length of the string)
let it be i and j
if(string[i]==string[j])
then do solve(i+1,j-1)
else
min(solve(i+1,j),solve(i,j-1);




-- 
Regards,
R.KARTHIKEYAN
BE CSE 3rd year,
Anna university,Chennai-600025.

-- 
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