I'm stuck. I need to adjust my loops so they continue to compare my two arrays but not print out all the extra characters

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

I'm stuck. I need to adjust my loops so they continue to compare my two arrays but not print out all the extra characters

问题

  1. 我必须比较两个字符串数组如果myArray中的任何字符与argArray中的字符匹配那么我需要交换myArray中的字符的大小写我几乎做到了但是得到了额外的输出
  2. 到目前为止我的代码如下 -
  3. ```java
  4. public class Main {
  5. public static void main(String[] args) {
  6. Main ob = new Main();
  7. ob.reverse("bcdxyz@3210.");
  8. }
  9. public String reverse(String arg) {
  10. String reverseCap = "";
  11. String myStr = "abc, XYZ; 123.";
  12. char[] argArray = arg.toCharArray();
  13. char[] myArray = myStr.toCharArray();
  14. for (int i =0; i < myArray.length; i++) {
  15. for (int j =0; j < argArray.length; j++){
  16. if (myArray[i] == argArray[j] && Character.isLowerCase(myArray[i])){
  17. reverseCap += Character.toUpperCase(myArray[i]);
  18. } else if (myArray[i] == argArray[j] && Character.isUpperCase(myArray[i])){
  19. reverseCap += Character.toLowerCase(myArray[i]);
  20. } else {
  21. reverseCap += myArray[i];
  22. }
  23. }
  24. }
  25. System.out.println(reverseCap);
  26. return null;
  27. }
  28. }

我希望reverseCap是"aBC, xyz, 123.",但我得到了以下结果 -

  1. "aBC, xyz, 123."

我已经盯着这段代码几个小时了,所以我觉得现在是向别人寻求帮助的时候了,免得我把自己的眼睛剜出来。

  1. <details>
  2. <summary>英文:</summary>
  3. I have to compare two string arrays. If the any of the characters in myArray match a character in argArray then I need to swap the case of the character in myArray. I&#39;m almost there but am getting extra output.
  4. This is what I have so far -

public class Main {
public static void main(String[] args) {

  1. Main ob = new Main();
  2. ob.reverse(&quot;bcdxyz@3210.&quot;);
  3. }
  4. public String reverse(String arg) {
  5. String reverseCap = &quot;&quot;;
  6. String myStr = &quot;abc, XYZ; 123.&quot;;
  7. char[] argArray = arg.toCharArray();
  8. char[] myArray = myStr.toCharArray();
  9. for (int i =0; i &lt; myArray.length; i++) {
  10. for (int j =0; j &lt; argArray.length; j++){
  11. if (myArray[i] == argArray[j] &amp;&amp; Character.isLowerCase(myArray[i])){
  12. reverseCap += Character.toUpperCase(myArray[i]);
  13. } else if (myArray[i] == argArray[j] &amp;&amp; Character.isUpperCase(myArray[i])){
  14. reverseCap += Character.toLowerCase(myArray[i]);
  15. } else {
  16. reverseCap += myArray[i];
  17. }
  18. }
  19. }
  20. System.out.println(reverseCap);
  21. return null;
  22. }
  1. I want reverseCap to be &quot;aBC, xyz, 123.&quot; but am getting the following -

"aaaaaaaaaaaaBbbbbbbbbbbbcCcccccccccc,,,,,,,,,,,, XXXXXXXXXXXXYYYYYYYYYYYYZZZZZZZZZZZZ;;;;;;;;;;;; 111111111111222222222222333333333333............
".

  1. I&#39;ve been staring at this for hours so I figured it was time to ask for help before I pluck my eyes out.
  2. </details>
  3. # 答案1
  4. **得分**: 0
  5. 你正在每次迭代时都向`reverseCap`添加一个字符,无论字符是否匹配。在你的特定示例中,你可以直接去掉这部分,因为`myStr`中的每个字符也出现在`arg`中,但如果你想要添加字符到`reverseCap`,即使它们不在`arg`中出现,你需要一种方法来检查是否已经向`reverseCap`添加了字符。
  6. <details>
  7. <summary>英文:</summary>
  8. With this part
  9. } else {
  10. reverseCap += myArray[i];
  11. }
  12. you&#39;re adding a character to `reverseCap` with every iteration, regardless if the characters match or not.
  13. In your specific example, you could just leave that out, since every character in `myStr` also appears in `arg`, but if you want to add characters to `reverseCap`, even if they don&#39;t appear in `arg`, you&#39;ll need a way of checking if you already added a character to `reverseCap`.
  14. </details>
  15. # 答案2
  16. **得分**: 0
  17. Sure, here's the translated code:
  18. 更改
  19. ```java
  20. String reverseCap = "";

  1. char[] reverseCap = new char[myStr.length()];

然后,对于每个出现的

  1. reverseCap +=

更改为

  1. reverseCap[i] =

最后,将 reverseCap 转换为一个字符串:

  1. String result = String.valueOf(reverseCap);

您目前正在返回 null。考虑返回 result,并将 System.out.println(...) 移入 main() 方法中。

更新:
我认为更好的方法是使用包含大写/小写字符对及其逆的查找映射来获取替换字符。嵌套的for循环有点复杂。

  1. /**
  2. * 示例:对于字符串 &quot;bcdxyz@3210.&quot;
  3. * 查找映射如下
  4. * {B=b, b=B, C=c, c=C, D=d, d=D, X=x, x=X, Y=y, y=Y, Z=z, z=Z}
  5. * <p>
  6. * 使用映射来获取字符的逆比重复循环字符串要快。
  7. * </p>
  8. * @param arg
  9. * @return
  10. */
  11. public String reverse2(String arg) {
  12. Map<Character, Character> inverseLookup = createInverseLookupMap(arg);
  13. String myStr = "abc, XYZ; 123.";
  14. String result = myStr.chars()
  15. .mapToObj(ch -> Character.toString(inverseLookup.getOrDefault(ch, (char) ch)))
  16. .collect(Collectors.joining());
  17. return result;
  18. }
  19. private Map<Character, Character> createInverseLookupMap(String arg) {
  20. Map<Character, Character> lookupMap = arg.chars()
  21. .filter(ch -> Character.isLetter(ch))
  22. .mapToObj(this::getPairs)
  23. .flatMap(List::stream)
  24. .collect(Collectors.toMap(Pair::key, Pair::value));
  25. System.out.println(lookupMap);
  26. return lookupMap;
  27. }
  28. private List<Pair> getPairs(int ch) {
  29. char upperVariant = (char) Character.toUpperCase(ch);
  30. return List.of(
  31. new Pair(upperVariant, Character.toLowerCase(upperVariant)),
  32. new Pair(Character.toLowerCase(upperVariant), upperVariant));
  33. }
  34. static record Pair(Character key, Character value) {
  35. }

但如果不习惯Java流API,这也可能看起来有点复杂。

英文:

Change

  1. String reverseCap = &quot;&quot;;

to

  1. char[] reverseCap = new char[myStr.length()];

and then for each occurrence of

  1. reverseCap +=

change that to read

  1. reverseCap[i] =

Finally, convert reverseCap to a String:

  1. String result = String.valueOf(reverseCap);

You are currently returning null. Consider returning result, and moving the System.out.println(...) into the main() method.

Update:
I think a better way to approach this is to use a lookup map containing upper/lower case pairs and their inverse to get the replacement character. The nested for loops are a bit gnarly.

  1. /**
  2. * Example: for the string &quot;bcdxyz@3210.&quot;
  3. * the lookup map is
  4. * {B=b, b=B, C=c, c=C, D=d, d=D, X=x, x=X, Y=y, y=Y, Z=z, z=Z}
  5. * &lt;p&gt;
  6. * Using a map to get the inverse of a character is faster than repetitively
  7. * looping through the string.
  8. * &lt;/p&gt;
  9. * @param arg
  10. * @return
  11. */
  12. public String reverse2(String arg) {
  13. Map&lt;Character, Character&gt; inverseLookup = createInverseLookupMap(arg);
  14. String myStr = &quot;abc, XYZ; 123.&quot;;
  15. String result = myStr.chars()
  16. .mapToObj(ch -&gt; Character.toString(inverseLookup.getOrDefault(ch, (char) ch)))
  17. .collect(Collectors.joining());
  18. return result;
  19. }
  20. private Map&lt;Character, Character&gt; createInverseLookupMap(String arg) {
  21. Map&lt;Character, Character&gt; lookupMap = arg.chars()
  22. .filter(ch -&gt; Character.isLetter(ch))
  23. .mapToObj(this::getPairs)
  24. .flatMap(List::stream)
  25. .collect(Collectors.toMap(Pair::key, Pair::value));
  26. System.out.println(lookupMap);
  27. return lookupMap;
  28. }
  29. private List&lt;Pair&gt; getPairs(int ch) {
  30. char upperVariant = (char) Character.toUpperCase(ch);
  31. return List.of(
  32. new Pair(upperVariant, Character.toLowerCase(upperVariant)),
  33. new Pair(Character.toLowerCase(upperVariant), upperVariant));
  34. }
  35. static record Pair(Character key, Character value) {
  36. }

But if one is not used to the Java streaming API, this might look a bit gnarly too.

答案3

得分: 0

Marce注意到在每次迭代中向reverseCap添加字符的问题。以下是解决该问题并在原地执行大小写更改的解决方案。首先检查是否匹配,然后再更改大小写可以简化逻辑。请注意,在检查与arg[i]是否匹配之前,myArray[i]需要转换为小写,因为前者可能是大写字符;对于argArray[j],这不是必要的,因为这些字符都假定是小写。最后,一旦内部循环匹配,就不再需要进一步迭代。

  1. public class Main {
  2. public static void main(String[] args) {
  3. Main ob = new Main();
  4. String testStr = "abc, XYZ; 123.";
  5. String testArg = "bcdxyz@3210.";
  6. System.out.println(testStr + " using " + testArg + " =>");
  7. System.out.println(ob.reverse(testStr, testArg));
  8. }
  9. public String reverse(String myStr, String myArg) {
  10. char[] myArray = myStr.toCharArray();
  11. char[] argArray = myArg.toCharArray();
  12. for (int i = 0; i < myArray.length; i++) {
  13. for (int j = 0; j < argArray.length; j++) {
  14. if (Character.toLowerCase(myArray[i]) == argArray[j]) {
  15. if (Character.isLowerCase(myArray[i])) {
  16. myArray[i] = Character.toUpperCase(myArray[i]);
  17. } else if (Character.isUpperCase(myArray[i])) {
  18. myArray[i] = Character.toLowerCase(myArray[i]);
  19. }
  20. break;
  21. }
  22. }
  23. }
  24. return String.valueOf(myArray);
  25. }
  26. }
英文:

Marce noted the problem of adding characters to reverseCap on every iteration. Here is a solution that solves that problem and performs the case changes in place. Checking for a match first and then changing the case simplifies the logic a bit. Note myArray[i] needs to be lowercased before checking against arg[i] because the former may be an uppercase character; this is not needed for argArray[j] because those characters are assumed to be all lowercase. Finally, once the inner loop has matched, further iterations of it are no longer needed.

  1. public class Main {
  2. public static void main(String[] args) {
  3. Main ob = new Main();
  4. String testStr = &quot;abc, XYZ; 123.&quot;;
  5. String testArg = &quot;bcdxyz@3210.&quot;;
  6. System.out.println(testStr + &quot; using &quot; + testArg + &quot; =&gt;&quot;);
  7. System.out.println(ob.reverse(testStr, testArg));
  8. }
  9. public String reverse(String myStr, String myArg) {
  10. char[] myArray = myStr.toCharArray();
  11. char[] argArray = myArg.toCharArray();
  12. for (int i =0; i &lt; myArray.length; i++) {
  13. for (int j =0; j &lt; argArray.length; j++) {
  14. if (Character.toLowerCase(myArray[i]) == argArray[j]) {
  15. if (Character.isLowerCase(myArray[i])) {
  16. myArray[i] = Character.toUpperCase(myArray[i]);
  17. } else if (Character.isUpperCase(myArray[i])) {
  18. myArray[i] = Character.toLowerCase(myArray[i]);
  19. }
  20. break;
  21. }
  22. }
  23. }
  24. return String.valueOf(myArray);
  25. }
  26. }

huangapple
  • 本文由 发表于 2023年2月14日 02:02:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/75439632.html
匿名

发表评论

匿名网友

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

确定