作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
/*
*
*
*/
import java.util.Scanner;
import java.util.Arrays;
public class Anagram
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
String one, two;
System.out.print("Enter first sentence: ");
String s1 = sc.nextLine();
System.out.print("Enter second sentence: ");
String s2 = sc.nextLine();
sc.close();
s1 = s1.toLowerCase();
char[] chars = s1.toCharArray();
Arrays.sort(chars);
String sort1 = new String(chars);
System.out.println(sort1 + " are the letters of " + s1 + " in order");
s2 = s2.toLowerCase();
char[] chars2 = s2.toCharArray();
Arrays.sort(chars2);
String sort2 = new String(chars2);
System.out.println(sort2 + " are the letters of " + s2 + " in order");
if(sort1.equals(sort2))
System.out.println(s1 + " is an anagram of " + s2);
}
}
这是我的程序,使用 toCharArray 比较变位词可以正常工作,但是是否可以完成每个 'a' 到 'z' 并将其附加到排序列表而不是 toCharArray?
最佳答案
好吧,有几个选项。如果您只想避免调用“toCharArray”,那么您可以循环遍历字符串并以这种方式创建字符,但我怀疑这就是您要找的东西?
你也可以做如下实现(伪代码):
public void areAnagrams(String s1, String s2)
{
int[] aNumLetters = new int[26];
s1.toLowerCase();
s2.toLowerCase();
for each char c in s1
aNumLetters[(int)c - ((int)'a')]++;
for each char c in s2
aNumLetters[(int)c - ((int)'a')]--;
for each int nLetterCount in aNumLetters
if nLetterCount != 0
return false
return true;
}
关于java - 如何在没有 toCharArray 方法的情况下比较字谜?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7184133/
我是一名优秀的程序员,十分优秀!