完全な開示:これは課題のためのものなので、実際のコードソリューションを投稿しないでください!
ユーザーから文字列を取得してスタックとキューに渡し、それら2つを使用して文字を比較し、文字列が回文であるかどうかを判断する必要がある割り当てがあります。プログラムを作成しましたが、どこかに論理エラーがあるようです。関連するコードは次のとおりです。
public static void main(String[] args) {
UserInterface ui = new UserInterface();
Stack stack = new Stack();
Queue queue = new Queue();
String cleaned = new String();
boolean palindrome = true;
ui.setString("Please give me a palindrome.");
cleaned = ui.cleanString(ui.getString());
for (int i = 0; i < cleaned.length(); ++i) {
stack.push(cleaned.charAt(i));
queue.enqueue(cleaned.charAt(i));
}
while (!stack.isEmpty() && !queue.isEmpty()) {
if (stack.pop() != queue.dequeue()) {
palindrome = false;
}
}
if (palindrome) {
System.out.printf("%s is a palindrome!", ui.getString());
} else
System.out.printf("%s is not a palindrome :(", ui.getString());
stack.dump();
queue.clear();
}
public class Stack {
public void push(char c) {
c = Character.toUpperCase(c);
Node oldNode = header;
header = new Node();
header.setData(c);
header.setNext(oldNode);
}
public char pop() {
Node temp = new Node();
char data;
if (isEmpty()) {
System.out.printf("Stack Underflow (pop)\n");
System.exit(0);
}
temp = header;
data = temp.getData();
header = header.getNext();
return data;
}
}
public class Queue {
public void enqueue(char c) {
c = Character.toUpperCase(c);
Node n = last;
last = new Node();
last.setData(c);
last.setNext(null);
if (isEmpty()) {
first = last;
} else n.setNext(last);
}
public char dequeue() {
char data;
data = first.getData();
first = first.getNext();
return data;
}
}
public String cleanString(String s) {
return s.replaceAll("[^A-Za-z0-9]", "");
}
基本的に、Eclipseのデバッガーを介してコードを実行すると、popメソッドとdequeueメソッドが特定の英数字のみを選択しているように見えます。replaceAll("[^A-Za-z0-9]", "")
英数字以外の文字(!、?、&など)のユーザーの文字列を「クリーンアップ」するために使用しています。特定の文字だけを選択すると言うと、私が識別できるパターンはないようです。何か案は?