码迷,mamicode.com
首页 > 其他好文 > 详细

LintCode Two Strings Are Anagrams

时间:2016-05-25 01:44:27      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

1. 把string变为char数组

2. 排序Arrays.sort()

public class Solution {
    /**
     * @param s: The first string
     * @param b: The second string
     * @return true or false
     */
    public boolean anagram(String s, String t) {
        if(s == null || t == null) return false;
        if(s.length() != t.length()) return false;
        
        char[] arrs = s.toCharArray();
        char[] arrt = t.toCharArray();
        Arrays.sort(arrs);
        Arrays.sort(arrt);
        
        boolean flag = true;
        for(int i = 0; i < arrs.length; i++){
            if(arrs[i] != arrt[i]){
                flag = false;
                
            }
        }
        return flag;// write your code here
    }
};

 

LintCode Two Strings Are Anagrams

标签:

原文地址:http://www.cnblogs.com/LittleAlex/p/5525612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!