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

LeetCode 242 Valid Anagram(有效字谜)(*)

时间:2016-01-12 01:25:40      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:

翻译

给定两个字符串s和t,写一个函数来确定是否t是s的字谜。

例如,
s = "anagram", t = "nagaram", 返回true
s = "rat", t = "car", 返回false

备注:
你可以假设字符串只包含小写字母。

跟进:
如果输入包含unicode字符该怎么做?你的解决方案能够适应这种情况吗?

原文

Given two strings s and t, write a function to determine if t is an anagram of s.

For example,
s = "anagram", t = "nagaram", return true.
s = "rat", t = "car", return false.

Note:
You may assume the string contains only lowercase alphabets.

Follow up:
What if the inputs contain unicode characters? How would you adapt your solution to such case?

分析

几乎秒写出来,不过不确定题目中的unicode那个能不能用,估计是不能把……因为我都不知道这个要怎么输入进去……以后再想办法把。

#include <iostream>
#include <algorithm>
using namespace std;

bool isAnagram(string s, string t) {
    sort(s.begin(), s.end());
    sort(t.begin(), t.end());
    return s == t;
}

int main() {    
    string s = "anagram";
    string t = "nagaram";
    cout << isAnagram(s, t);
    return 0;
}

一开始看到翻译上给出的是“字谜”,题目中的意思我就不懂了,难道是这个谜语?然后另一个字符串是谜底?程序里又没有词库这种东西,怎么写……然后我去查了这个单词——“nagaram”,并不存在。

代码

class Solution {
public:
    bool isAnagram(string s, string t) {
        sort(s.begin(), s.end());
        sort(t.begin(), t.end());
        return s == t;
    }
};

LeetCode 242 Valid Anagram(有效字谜)(*)

标签:

原文地址:http://blog.csdn.net/nomasp/article/details/50498370

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