Ho appena iniziato a leggere Cracking the Coding Interview . Uno dei problemi (in particolare 1.4) dopo aver risolto e poi guardando la risposta mi ha fatto dubitare del modo in cui è stato fatto e ho deciso di postarlo qui per vedere se mi manca qualcosa.
Ecco il problema:
Write a method to replace all spaces in a string with '%20'. You may assume that the string has sufficient space at the end of the string to hold the additional characters, and that you are given the 'true' length of the string. (Note: if implementing in Java, please use a character array so that you can perform this operation in place.)
Esempio: inserire "Mr John Smith", 13 Uscita "Mr% 20John% 20Smith"
Soluzione dell'autore:
public void replaceSpaces(char[] str, int length)
{
int spaceCount = 0, newLength, i;
for(i=0; i<length; i++)
{
if (str[i] == '')
{
spaceCount++;
}
}
// ...
}
Metto ... perché il resto è irrilevante alla mia domanda.
Perché eseguire il ciclo di ricerca per trovare spaceCount
se puoi calcolare solo (str.length - length) / 2
?