Skip to main content
Code Review

Return to Answer

replaced http://codereview.stackexchange.com/ with https://codereview.stackexchange.com/
Source Link

It's important to pay attention to every bit of detail in the problem description:

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

As you're implementing this in Java, your method should receive a char[] instead of a String. And if I interpret correctly, the "true" length is the length without the padding, and is an additional parameter, giving the signature:

void replaceSpaces(char[] input, int trueLength) { ... }

With this established, the implementation can be simplified:

  • No need for getTrueLength: it's a given
  • (削除) No need for calculating the final size, it's given by input.length (削除ここまで)
    • As @rolfl @rolfl pointed out, the size of input is not 100% clear. The description only states that it has sufficient space. So indeed, we may need to calculate the final size.
  • The printing is unnecessary and should be removed, as it breaks the single responsibility of the method

Another improvement in the implementation is that you don't need to count the spaces. You can walk backward, tracking two positions in parallel:

  • The last position to write to (starts at input.length - 1)
  • The last position in the text (starts at trueLength - 1)

Walk backward as long as the text position is smaller than the end position. If you see a space, overwrite the the values at the position with %20. Otherwise simply copy the input.

void replaceSpaces(char[] input, int trueLength) {
 //int end = input.length - 1;
 int end = trueLength + (countSpaces(input, trueLength) * 2) - 1;
 for (int textEnd = trueLength - 1; textEnd < end; textEnd--) {
 if (input[textEnd] == ' ') {
 input[end--] = '0';
 input[end--] = '2';
 input[end--] = '%';
 } else {
 input[end--] = input[textEnd];
 }
 }
}

It's important to pay attention to every bit of detail in the problem description:

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

As you're implementing this in Java, your method should receive a char[] instead of a String. And if I interpret correctly, the "true" length is the length without the padding, and is an additional parameter, giving the signature:

void replaceSpaces(char[] input, int trueLength) { ... }

With this established, the implementation can be simplified:

  • No need for getTrueLength: it's a given
  • (削除) No need for calculating the final size, it's given by input.length (削除ここまで)
    • As @rolfl pointed out, the size of input is not 100% clear. The description only states that it has sufficient space. So indeed, we may need to calculate the final size.
  • The printing is unnecessary and should be removed, as it breaks the single responsibility of the method

Another improvement in the implementation is that you don't need to count the spaces. You can walk backward, tracking two positions in parallel:

  • The last position to write to (starts at input.length - 1)
  • The last position in the text (starts at trueLength - 1)

Walk backward as long as the text position is smaller than the end position. If you see a space, overwrite the the values at the position with %20. Otherwise simply copy the input.

void replaceSpaces(char[] input, int trueLength) {
 //int end = input.length - 1;
 int end = trueLength + (countSpaces(input, trueLength) * 2) - 1;
 for (int textEnd = trueLength - 1; textEnd < end; textEnd--) {
 if (input[textEnd] == ' ') {
 input[end--] = '0';
 input[end--] = '2';
 input[end--] = '%';
 } else {
 input[end--] = input[textEnd];
 }
 }
}

It's important to pay attention to every bit of detail in the problem description:

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

As you're implementing this in Java, your method should receive a char[] instead of a String. And if I interpret correctly, the "true" length is the length without the padding, and is an additional parameter, giving the signature:

void replaceSpaces(char[] input, int trueLength) { ... }

With this established, the implementation can be simplified:

  • No need for getTrueLength: it's a given
  • (削除) No need for calculating the final size, it's given by input.length (削除ここまで)
    • As @rolfl pointed out, the size of input is not 100% clear. The description only states that it has sufficient space. So indeed, we may need to calculate the final size.
  • The printing is unnecessary and should be removed, as it breaks the single responsibility of the method

Another improvement in the implementation is that you don't need to count the spaces. You can walk backward, tracking two positions in parallel:

  • The last position to write to (starts at input.length - 1)
  • The last position in the text (starts at trueLength - 1)

Walk backward as long as the text position is smaller than the end position. If you see a space, overwrite the the values at the position with %20. Otherwise simply copy the input.

void replaceSpaces(char[] input, int trueLength) {
 //int end = input.length - 1;
 int end = trueLength + (countSpaces(input, trueLength) * 2) - 1;
 for (int textEnd = trueLength - 1; textEnd < end; textEnd--) {
 if (input[textEnd] == ' ') {
 input[end--] = '0';
 input[end--] = '2';
 input[end--] = '%';
 } else {
 input[end--] = input[textEnd];
 }
 }
}
deleted 30 characters in body
Source Link
janos
  • 112.9k
  • 15
  • 154
  • 396

It's important to pay attention to every bit of detail in the problem description:

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

As you're implementing this in Java, your method should receive a char[] instead of a String. And if I interpret correctly, the "true" length is the length without the padding, and is an additional parameter, giving the signature:

void replaceSpaces(char[] input, int trueLength) { ... }

With this established, the implementation can be simplified:

  • No need for getTrueLength: it's a given
  • (削除) No need for calculating the final size, it's given by input.length (削除ここまで)
    • As @rolfl pointed out, the size of input is not 100% clear. The description only states that it has sufficient space. So indeed, we may need to calculate the final size.
  • The printing is unnecessary and should be removed, as it breaks the single responsibility of the method

Another improvement in the implementation is that you don't need to count the spaces. You can walk backward, tracking two positions in parallel:

  • The last position to write to (starts at input.length - 1)
  • The last position in the text (starts at trueLength - 1)

Walk backward as long as the text position is smaller than the end position. If you see a space, overwrite the the values at the position with %20. Otherwise simply copy the input.

void replaceSpaces(char[] input, int trueLength) {
 //int end = input.length - 1;
 int end = trueLength + (countSpaces(input, trueLength) * 2) - 1;
 for (int textEnd = trueLength - 1; while (textEnd < endend; textEnd--) {
 if (input[textEnd] == ' ') {
 input[end--] = '0';
 input[end--] = '2';
 input[end--] = '%';
 textEnd--;
 } else {
 input[end--] = input[textEnd--];input[textEnd];
 }
 }
}

It's important to pay attention to every bit of detail in the problem description:

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

As you're implementing this in Java, your method should receive a char[] instead of a String. And if I interpret correctly, the "true" length is the length without the padding, and is an additional parameter, giving the signature:

void replaceSpaces(char[] input, int trueLength) { ... }

With this established, the implementation can be simplified:

  • No need for getTrueLength: it's a given
  • (削除) No need for calculating the final size, it's given by input.length (削除ここまで)
    • As @rolfl pointed out, the size of input is not 100% clear. The description only states that it has sufficient space. So indeed, we may need to calculate the final size.
  • The printing is unnecessary and should be removed, as it breaks the single responsibility of the method

Another improvement in the implementation is that you don't need to count the spaces. You can walk backward, tracking two positions in parallel:

  • The last position to write to (starts at input.length - 1)
  • The last position in the text (starts at trueLength - 1)

Walk backward as long as the text position is smaller than the end position. If you see a space, overwrite the the values at the position with %20. Otherwise simply copy the input.

void replaceSpaces(char[] input, int trueLength) {
 //int end = input.length - 1;
 int end = trueLength + (countSpaces(input, trueLength) * 2) - 1;
 int textEnd = trueLength - 1; while (textEnd < end) {
 if (input[textEnd] == ' ') {
 input[end--] = '0';
 input[end--] = '2';
 input[end--] = '%';
 textEnd--;
 } else {
 input[end--] = input[textEnd--];
 }
 }
}

It's important to pay attention to every bit of detail in the problem description:

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

As you're implementing this in Java, your method should receive a char[] instead of a String. And if I interpret correctly, the "true" length is the length without the padding, and is an additional parameter, giving the signature:

void replaceSpaces(char[] input, int trueLength) { ... }

With this established, the implementation can be simplified:

  • No need for getTrueLength: it's a given
  • (削除) No need for calculating the final size, it's given by input.length (削除ここまで)
    • As @rolfl pointed out, the size of input is not 100% clear. The description only states that it has sufficient space. So indeed, we may need to calculate the final size.
  • The printing is unnecessary and should be removed, as it breaks the single responsibility of the method

Another improvement in the implementation is that you don't need to count the spaces. You can walk backward, tracking two positions in parallel:

  • The last position to write to (starts at input.length - 1)
  • The last position in the text (starts at trueLength - 1)

Walk backward as long as the text position is smaller than the end position. If you see a space, overwrite the the values at the position with %20. Otherwise simply copy the input.

void replaceSpaces(char[] input, int trueLength) {
 //int end = input.length - 1;
 int end = trueLength + (countSpaces(input, trueLength) * 2) - 1;
 for (int textEnd = trueLength - 1; textEnd < end; textEnd--) {
 if (input[textEnd] == ' ') {
 input[end--] = '0';
 input[end--] = '2';
 input[end--] = '%';
 } else {
 input[end--] = input[textEnd];
 }
 }
}
added 333 characters in body
Source Link
janos
  • 112.9k
  • 15
  • 154
  • 396

It's important to pay attention to every bit of detail in the problem description:

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

As you're implementing this in Java, your method should receive a char[] instead of a String. And if I interpret correctly, the "true" length is the length without the padding, and is an additional parameter, giving the signature:

void replaceSpaces(char[] input, int trueLength) { ... }

With this established, the implementation can be simplified:

  • No need for getTrueLength: it's a given
  • No need for calculating the final size, it's given by input.length(削除) No need for calculating the final size, it's given by input.length (削除ここまで)
    • As @rolfl pointed out, the size of input is not 100% clear. The description only states that it has sufficient space. So indeed, we may need to calculate the final size.
  • The printing is unnecessary and should be removed, as it breaks the single responsibility of the method

Another improvement in the implementation is that you don't need to count the spaces. You can walk backward, tracking two positions in parallel:

  • The last position to write to (starts at input.length - 1)
  • The last position in the text (starts at trueLength - 1)

Walk backward as long as the text position is smaller than the end position. If you see a space, overwrite the the values at the position with %20. Otherwise simply copy the input.

void replaceSpaces(char[] input, int trueLength) {
 //int end = input.length - 1;
 int end = trueLength + (countSpaces(input, trueLength) * 2) - 1;
 int textEnd = trueLength - 1;
 while (textEnd < end) {
 if (input[textEnd] == ' ') {
 input[end--] = '0';
 input[end--] = '2';
 input[end--] = '%';
 textEnd--;
 } else {
 input[end--] = input[textEnd--];
 }
 }
}

It's important to pay attention to every bit of detail in the problem description:

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

As you're implementing this in Java, your method should receive a char[] instead of a String. And if I interpret correctly, the "true" length is the length without the padding, and is an additional parameter, giving the signature:

void replaceSpaces(char[] input, int trueLength) { ... }

With this established, the implementation can be simplified:

  • No need for getTrueLength: it's a given
  • No need for calculating the final size, it's given by input.length
  • The printing is unnecessary and should be removed, as it breaks the single responsibility of the method

Another improvement in the implementation is that you don't need to count the spaces. You can walk backward, tracking two positions in parallel:

  • The last position to write to (starts at input.length - 1)
  • The last position in the text (starts at trueLength - 1)

Walk backward as long as the text position is smaller than the end position. If you see a space, overwrite the the values at the position with %20. Otherwise simply copy the input.

void replaceSpaces(char[] input, int trueLength) {
 int end = input.length - 1;
 int textEnd = trueLength - 1;
 while (textEnd < end) {
 if (input[textEnd] == ' ') {
 input[end--] = '0';
 input[end--] = '2';
 input[end--] = '%';
 textEnd--;
 } else {
 input[end--] = input[textEnd--];
 }
 }
}

It's important to pay attention to every bit of detail in the problem description:

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

As you're implementing this in Java, your method should receive a char[] instead of a String. And if I interpret correctly, the "true" length is the length without the padding, and is an additional parameter, giving the signature:

void replaceSpaces(char[] input, int trueLength) { ... }

With this established, the implementation can be simplified:

  • No need for getTrueLength: it's a given
  • (削除) No need for calculating the final size, it's given by input.length (削除ここまで)
    • As @rolfl pointed out, the size of input is not 100% clear. The description only states that it has sufficient space. So indeed, we may need to calculate the final size.
  • The printing is unnecessary and should be removed, as it breaks the single responsibility of the method

Another improvement in the implementation is that you don't need to count the spaces. You can walk backward, tracking two positions in parallel:

  • The last position to write to (starts at input.length - 1)
  • The last position in the text (starts at trueLength - 1)

Walk backward as long as the text position is smaller than the end position. If you see a space, overwrite the the values at the position with %20. Otherwise simply copy the input.

void replaceSpaces(char[] input, int trueLength) {
 //int end = input.length - 1;
 int end = trueLength + (countSpaces(input, trueLength) * 2) - 1;
 int textEnd = trueLength - 1;
 while (textEnd < end) {
 if (input[textEnd] == ' ') {
 input[end--] = '0';
 input[end--] = '2';
 input[end--] = '%';
 textEnd--;
 } else {
 input[end--] = input[textEnd--];
 }
 }
}
added 459 characters in body
Source Link
janos
  • 112.9k
  • 15
  • 154
  • 396
Loading
Source Link
janos
  • 112.9k
  • 15
  • 154
  • 396
Loading
lang-java

AltStyle によって変換されたページ (->オリジナル) /