【LeetCode】面试题 01.02. 判定是否互为字符重排(JAVA)

原题地址:https://leetcode-cn.com/problems/check-permutation-lcci/

题目描述:
给定两个字符串 s1 和 s2,请编写一个程序,确定其中一个字符串的字符重新排列后,能否变成另一个字符串。

示例 1:
输入: s1 = “abc”, s2 = “bca”
输出: true

示例 2:
输入: s1 = “abc”, s2 = “bad”
输出: false

说明:
0 <= len(s1) <= 100
0 <= len(s2) <= 100

代码:

所有字符做异或运算,如果最后结果为0,则为重排。

class Solution {
    public boolean CheckPermutation(String s1, String s2) {
        int res = 0;
        int m = s1.length(), n = s2.length();
        if(m != n) return false;
        for(int i = 0; i < m; i ++)
        {
            res = res ^ s1.charAt(i);
            res = res ^ s2.charAt(i);
        }
        if(res == 0) return true;
        return false;
    }
}

用数组标记出现的字母数。

class Solution {
    public boolean CheckPermutation(String s1, String s2) {
        int[] vec1 = new int[26];
        int m = s1.length(), n = s2.length();
        if(m != n) return false;
        for(int i = 0; i < m; i ++) vec1[s1.charAt(i) - 'a'] ++;
        for(int i = 0; i < m; i ++) vec1[s2.charAt(i) - 'a'] --;
        for(int i = 0; i < 26; i ++)
        {
            if(vec1[i] != 0) return false;
        }
        return true;
    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值