I need to compare two strings that are of varying length and as such I have written two conditional loops depending on which String is longest:
boolean compare(String first, String second)
{
boolean firstLongest = first.length() > second.length();
if(firstLongest)
{
for(int i = 0; i < first.length(); i++)
//charAt code here
}
else{
for(int i = 0; i < second.length();i++)
//charAt code here
}
}
I decided to re-write it as so:
boolean compare(String first, String second)
{
int lengthDifference = first.length() - second.length();
for(int i = 0; i < first.length() + lengthDifference;i++)
//charAt code here
}
I want to avoid having 1) two loops and 2) out of bounds exceptions. My question is does the above implementation have a corner case that I am missing or should this work for all possible inputs.
first.length!! – Jigar Joshi Nov 21 '11 at 18:36