怎样用java写堆栈判断是否为回文符?

内容是“abccba”判断其是否为回文符。我对数据结构这块不是很熟悉。... 内容是“abccba”判断其是否为回文符。
我对数据结构这块不是很熟悉。
展开
 我来答
25...4@qq.com
推荐于2016-10-16 · TA获得超过662个赞
知道小有建树答主
回答量:380
采纳率:0%
帮助的人:301万
展开全部
这种是利用数组。 字符串反转比较。
*****************************************************************
import java.io.*;

public class HuiWen {
String reverse(String w1) {
String w2;
char []str1 = w1.toCharArray();
int len = w1.length();
char []str2 = new char[len];
for(int i = 0; i<len; i++) {
str2[i] = str1[len - 1 -i];
}
w2 = new String(str2);
return w2;
}

public static void main(String args[]) {
HuiWen hw1 = new HuiWen();
String pm ="";
try {
InputStreamReader Reader = new InputStreamReader(System.in);
BufferedReader input = new BufferedReader(Reader);
System.out.print("give your test String :\n");
pm = input.readLine();
}catch(IOException e) {
System.out.println("exception occur..");
}
String w2 = hw1.reverse(pm);
if(w2.compareTo(pm) == 0) {
System.out.println("It is a HuiWen");
}
else {
System.out.println("It is not a HuiWen");
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Raymondguo008
2009-05-07 · TA获得超过1634个赞
知道小有建树答主
回答量:887
采纳率:100%
帮助的人:478万
展开全部
import java.util.*;

public class TestChar {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Input your word!");
String str = sc.nextLine();
if(isMatch(str)) {
System.out.println("is Match!");
} else
System.out.println("is not Match!");
}

static public boolean isMatch(String str) {
boolean b = true;
int len=str.length();
for(int i=0;i<len/2;i++) {
if( str.charAt(i)==str.charAt(len-i-1) )
continue;
else b = false;
return b;
}
return b;
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式