Java Poem Palindrome Checker:按顺序遍历数组匹配元素



目前正在尝试编写一首诗回文检查器。这不是专门针对回文的,而是数组以相同的顺序具有单词。例如,以下是一首诗回文

Life-
imitates nature,
always moving, traveling continuously.
Continuously traveling, moving always,
nature imitates
life

我的问题是遍历数组以匹配第一个和最后一个元素,因为目前它以错误的顺序比较事物。

我的代码如下:

import java.util.Scanner;
import java.io.*;
public class WordPalindromeTest {
public static void main(String[] args) {
System.out.println("This program determines if an entered sentence/word poem is a palindrome.");
Scanner input = new Scanner(System.in);
System.out.println("Please enter a string to determine if it is a palindrome: ");
while(input.hasNextLine()) {
String palin = input.nextLine();
if(palin.equals("quit")) {
break;
}
else {
boolean isPalin = isWordPalindrome(palin);
if(isPalin == true) {
System.out.println(palin + " is a palindrome!");
}
else
System.out.println(palin + " is NOT  a palindrome!");
}
}
System.out.println("Goodbye!");
input.close();
}
public static boolean isWordPalindrome(String s) {
boolean isWordPal = false;
String lowerCase = s.toLowerCase();
String replaced = lowerCase.replaceAll("[^a-zA-Z0-9\s]", "");
String words[] = replaced.split(" ");
for(int i = 0; i < words.length; i++) {
for(int j = 0; j < words.length; j++) {
if (words[i].equals(words[j]) && i != j) {
isWordPal = true;
}
else
isWordPal = false;
}
}
return isWordPal;
}
}

具体问题点是

public static boolean isWordPalindrome(String s) {
boolean isWordPal = false;
String lowerCase = s.toLowerCase();
String replaced = lowerCase.replaceAll("[^a-zA-Z0-9\s]", "");
String words[] = replaced.split(" ");
for(int i = 0; i < words.length; i++) {
for(int j = 0; j < words.length; j++) {
if (words[i].equals(words[j]) && i != j) {
isWordPal = true;
}
else
isWordPal = false;
}
}
return isWordPal;
}

我对如何正确设置循环以比较正确的元素感到困惑。它应该将第一个元素与最后一个元素进行比较,将第二个元素与第二个元素进行比较,依此类推,直到循环完成。我意识到在继续之前,我让它将第一个数组与整个数组进行比较。

这似乎是家庭作业,所以我不会给你一个可行的解决方案。但这个是这样的:

-你不需要两个循环。你只需要比较第一个到最后一个,第二个比较第二个到倒数第二个,等等(提示:如果你从Array的长度中减去i-1,你会得到你需要比较的相应元素i(。此外,您只需要迭代超过Array长度的一半

-如果isWordPal变成假的,你需要return假的。否则,它可能会被覆盖,最后它将返回 true。

相关内容

  • 没有找到相关文章

最新更新