折叠数组

huangapple go评论102阅读模式
英文:

Collapsing an array

问题

  1. public static int[] collapse(int[] arrayToCollapse) {
  2. // Properties
  3. int[] newArray = new int[(arrayToCollapse.length / 2) + (arrayToCollapse.length % 2)];
  4. // Set each element for the new array.
  5. for (int i = 0; i < arrayToCollapse.length / 2; i++) {
  6. // Set the current index of the new array to the sum of the next two elements from the input array.
  7. newArray[i] = arrayToCollapse[i * 2] + arrayToCollapse[i * 2 + 1];
  8. }
  9. // Set the last element of the new array if the input array length is odd.
  10. if (arrayToCollapse.length % 2 == 1) {
  11. newArray[newArray.length - 1] = arrayToCollapse[arrayToCollapse.length - 1];
  12. }
  13. // Return the new array
  14. return newArray;
  15. }
英文:

I need to have this method take in an array and add every 2 numbers together(doesn't add the same number twice) and make a new array to return, if there is an an odd number of elements the odd number will be added at the end. It currently doesn't add the correct numbers.

code:

  1. public static int[] collapse(int[] arrayToCollapse) {
  2. // Properties
  3. int[] newArray = new int[(arrayToCollapse.length / 2) + (arrayToCollapse.length % 2)];
  4. // Set each elements for the new array.
  5. for(int i = 0; i &lt; arrayToCollapse.length / 2 ; i++) {
  6. // Set the current index of the new array to the next two elements of the passed in array.
  7. newArray[i] += arrayToCollapse[i * 2] + arrayToCollapse[i * 2];
  8. }
  9. // Set the last element of the new array if the array passed in was odd.
  10. if(arrayToCollapse.length % 2 == 1) {
  11. newArray[newArray.length - 1] = arrayToCollapse[arrayToCollapse.length - 1];
  12. }
  13. // Return the array
  14. return newArray;
  15. }

答案1

得分: 2

  1. 新数组[i] = 数组要折叠的部分[i * 2] + 数组要折叠的部分[(i * 2) + 1];
英文:

This:

  1. newArray[i] += arrayToCollapse[i * 2] + arrayToCollapse[i * 2];

Should be:

  1. newArray[i] = arrayToCollapse[i * 2] + arrayToCollapse[(i * 2) + 1];

huangapple
  • 本文由 发表于 2020年9月24日 05:37:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/64036598.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定