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

【字符串】面试题 01.02. 判定是否互为字符重排

时间:2020-05-04 00:56:46      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:bool   哈希   for   return   思路   图片   strong   nbsp   试题   

题目:

技术图片

 

 

解答:

思路:哈希。

 1 class Solution {
 2 public:
 3     bool CheckPermutation(string s1, string s2) 
 4     {
 5         if (s1.size() != s2.size()) 
 6         {
 7             return false;
 8         }
 9         vector<int> hash(256, 0);
10         for (int i = 0; i < s1.size(); ++i) 
11         {
12             ++hash[s1[i]];
13             --hash[s2[i]];
14         }
15         for (int i = 0; i < hash.size(); ++i) 
16         {
17             if (hash[i] != 0) 
18             {
19                 return false;
20             }
21         }
22         return true;
23 
24     }
25 };

 

【字符串】面试题 01.02. 判定是否互为字符重排

标签:bool   哈希   for   return   思路   图片   strong   nbsp   试题   

原文地址:https://www.cnblogs.com/ocpc/p/12824640.html

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