我正在尝试创建一个程序来读取文件并检查文本是否是回文。代码编译,但并没有真正起作用。
问题是我不知道如何将完整的标记分解为字符或将其分配给字符串,以便使用字符串的长度push
(入队)每个字母或数字到stack
(队列)。有人可以为此提出解决方案吗?
public static void main(String [] args) throws IOException{
StackReferenceBased stack = new StackReferenceBased();
QueueReferenceBased queue = new QueueReferenceBased();
Scanner s = null;
String fileName=args[0]+".txt";
int symbols = 0;
int lettersAndDigits =0;
int matches = 0;
try{
s = new Scanner(new File(fileName));
while(s.hasNext()){
String current = s.next();
for(int i=0;i<current.length();i++){
char temp = s.next().charAt(i);
if(Character.isLetterOrDigit(temp)){
stack.push(temp);
queue.enqueue(temp);
lettersAndDigits++;
}
else {
symbols++;
}
}
}
System.out.println("There are: " + " "+ symbols + " " +"symbols and " + " "+lettersAndDigits + " "+ "digits/letters");
}
catch (FileNotFoundException e) {
System.out.println("Could not open the file:" + args[0]);
} //catch (Exception e) {
//System.out.println("ERROR copying file");
finally {
if(s != null){
s.close();
}
}
while (!stack.isEmpty()){
if(!stack.pop().equals(queue.dequeue())){
System.out.println("not pali");
break;
}
else {
++matches;
}
}
if(matches==lettersAndDigits){
System.out.print("pali");
}
}
答案 0 :(得分:1)
而不是
char temp = s.next().charAt(i);
你需要
char temp = current.charAt(i);
通过调用s.next()
,您从文件中读取下一个标记,并尝试根据第一个字符串(i
)长度访问该标记的current
元素,这将导致如果令牌读取的时间比第一次发言时短,则为例外