【LeetCode】242. Valid Anagram(Java)

题目描述:给定两个字符串s和t,编写一个函数来确定t是否是s的变位。

Example:
Input: s = “anagram”, t = “nagaram”
Output: true

/**
 * 有效的回文构词法
 * @author wangfei
 *
 */
public class Solution {

	/**
	 * 将26个小写字母映射到长度为26的数组中去,s字符串中存在某个字母时对应位置的数组中加1,
	 * t字符串中存在某个字母时对应位置的数组中减1,最后遍历数组元素,若存在不为0的数组值,
	 * 则返回false,否则返回true
	 * 时间复杂度为O(N)
	 * @param s
	 * @param t
	 * @return
	 */
	public static boolean isAnagram(String s, String t) {
		if(s == null || t== null || (s.length() != t.length()))
			return false;
		int[] arr = new int[26];
		for(int i=0; i<s.length(); i++) {
			arr[s.charAt(i) - 'a']++;
			arr[t.charAt(i) - 'a']--;
		}
		for(int i : arr) {        //遍历数组中的所有元素
			if(i != 0)
				return false;
		}
		return true;
	}
	
	public static void main(String[] args) {
		String s = "anagram";
		String t = "nagaram";
		System.out.println(isAnagram(s, t));
	}
	
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值