这道题是LeetCode里的第771道题。

题目要求:

给定字符串J 代表石头中宝石的类型,和字符串 S代表你拥有的石头。 S 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石。

J 中的字母不重复,J 和 S中的所有字符都是字母。字母区分大小写,因此"a""A"是不同类型的石头。

示例 1:

输入: J = "aA", S = "aAAbbbb"
输出: 3

示例 2:

输入: J = "z", S = "ZZ"
输出: 0

注意:

  • S 和 J 最多含有50个字母。
  • J 中的字符不重复。

送送送送送送送送送送分题!!!

提交代码:

class Solution {
public:
int numJewelsInStones(string J, string S) {
int hashmap[128]{0},sum=0;
for(int i=0;i<J.length();i++)
if(hashmap[J[i]]==0)hashmap[J[i]]=1;
for(int i=0;i<S.length();i++){
if(hashmap[S[i]])sum++;
}
return sum;
}
};

运行结果:

个人总结:

当时截图没有保存,现在实例多了,时间跟不上了。这个题目的简单程度堪比于 Hello World!多贴一些代码吧:

public:
int numJewelsInStones(string J, string S) {
int n[52]={0};
int count=0;
if(J.empty()||S.empty())
return 0;
for(auto tmp:J){
if(tmp<='Z'&&tmp>='A'){
++n[tmp-'A'+26];
}
else
++n[tmp-'a'];
}
for(auto tmp:S){
if(tmp<='Z'&&tmp>='A'){
if(n[tmp-'A'+26]!=0)
++count;
}
else{
if(n[tmp-'a']!=0)
++count;
}
}
return count;
}
};

↑↑↑曾经的最优解 4ms,现在也不行了。↑↑↑

//java 1
class Solution {
public int numJewelsInStones(String J, String S) { int num = 0;
for(int i=0;i<S.length();i++){
if(J.contains(S.charAt(i)+"")){
num++;
}
} return num;
}
}
//java 2
class Solution {
public int numJewelsInStones(String J, String S) {
if (J == null || S == null) {
return 0;
} Set<Character> set = new HashSet<Character>(); for (int i = 0; i < J.length(); i ++) {
set.add(J.charAt(i));
} int result = 0;
for (int i = 0; i < S.length(); i ++) {
if (set.contains(S.charAt(i))) {
result ++;
} }
return result;
}
}
//java 3
class Solution {
public int numJewelsInStones(String J, String S) {
int flag=0;
char[] js=J.toCharArray();
char[] ss=S.toCharArray();
Set<Character> set=new HashSet<>();
for(char c:js){
set.add(c);
}
for(char s:ss){
if(set.contains(s))
flag++;
}
return flag; }
}
//java script 1
/**
* @param {string} J
* @param {string} S
* @return {number}
*/
var numJewelsInStones = function(J, S) {
var res = 0
S.split('').forEach( i => {
if(J.indexOf(i) >= 0) res++
})
return res
};
//java script 2正则表达式
/**
* @param {string} J
* @param {string} S
* @return {number}
*/
var numJewelsInStones = function(J, S) {
var P = new RegExp(`[${J}]`, 'g');
var R = S.match(P); if (!R) return 0; return R.length;
};
//java script 3
/**
* @param {string} J
* @param {string} S
* @return {number}
*/
var numJewelsInStones = function(J, S) {
var sum = 0;
for (var i = 0; i < S.length; i++) {
if (J.indexOf(S[i]) != -1) {
sum++;
}
}
return sum;
};
//java script 4
/**
* @param {string} J
* @param {string} S
* @return {number}
*/
var numJewelsInStones = function(J, S) {
if (!J || !S) {
return 0;
}
var jewels = J.split('');
var stones = S.split('');
var count = 0;
stones.forEach(item => {
if (jewels.indexOf(item) > -1) {
count++;
}
});
return count;
};

↑↑↑这些都是 Java 解法,可以看出解法大致相同。因为题目简单,大家都在尝试如何使用优雅的解法hhh↑↑↑

【LeetCode】Jewels and Stones(宝石与石头)的更多相关文章

  1. LeetCode 771. Jewels and Stones (宝石与石头)

    题目标签:Hash Table 这一题很简单,题目给了两个string:J 和 S. 只要把J 里面的 char 放入HashSet,再遍历S找出有多少个石头是宝石. Java Solution: R ...

  2. [LeetCode] Jewels and Stones 珠宝和石头

    You're given strings J representing the types of stones that are jewels, and S representing the ston ...

  3. Leetcode771.Jewels and Stones宝石与石头

    给定字符串J 代表石头中宝石的类型,和字符串 S代表你拥有的石头. S 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石. J 中的字母不重复,J 和 S中的所有字符都是字母 ...

  4. [LeetCode] 771. Jewels and Stones 珠宝和石头

    You're given strings J representing the types of stones that are jewels, and S representing the ston ...

  5. Leetcode#771.Jewels and Stones(宝石与石头)

    题目描述 给定字符串J 代表石头中宝石的类型,和字符串 S代表你拥有的石头. S 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石. J 中的字母不重复,J 和 S中的所有字 ...

  6. LeetCode --> 771. Jewels and Stones

    Jewels and Stones You're given strings J representing the types of stones that are jewels, and S rep ...

  7. 【Leetcode】Jewels and Stones

    Jewels and Stones Description You're given strings J representing the types of stones that are jewel ...

  8. Java实现 LeetCode 771 宝石与石头(这是真暴力)

    771. 宝石与石头 给定字符串J 代表石头中宝石的类型,和字符串 S代表你拥有的石头. S 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石. J 中的字母不重复,J 和 ...

  9. 771. Jewels and Stones - LeetCode

    Question 771. Jewels and Stones Solution 题目大意:两个字符串J和S,其中J中每个字符不同,求S中包含有J中字符的个数,重复的也算 思路:Set记录字符串J中的 ...

随机推荐

  1. Spring Cloud Config git版

    由于在学习这块内容的时候还不会使用gitHub所以就用了osc的码云 config server POM文件 <dependency> <groupId>org.springf ...

  2. JVM垃圾回收机制二

    对象的回收 垃圾的回收涉及的几个问题:何时回收,由谁回收,怎样回收.这几个问题我们一一来解决. 1.何时回收----对象的生死判定 对象达到什么条件才能判断这个对象已经无用了.常见的判断对象生死的方法 ...

  3. [windows]解决Win7访问Windows 2003、XP共享慢的问题

    解决方法: 1. 修改网卡配置打开本地连接属性,点击"配置"在"高级"选项卡中,将"大型发送分载(IPv4)"的值设置成"禁用&q ...

  4. 博客高亮代码及使用OpenLiveWriter修改之前博客

    简述:  最近查阅前辈资料的时候,看到写的博客很有条理,回头看下自己的乱做麻花,然后来时研究: 他们的代码看起来很漂亮然后我就查资料,在网页版上一直没法出来像他们的格式,后查资料看来的使用客户端工具才 ...

  5. SAP成都研究院飞机哥:程序猿和飞机的不解之缘

    今天的文章来自Jerry的老同事张航. 张航和Jerry一样于2007年毕业后加入SAP成都研究院工作至今.进入SAP后的第一个开发部门是SAP Business by Design Infrastr ...

  6. 如何在vue项目中使用sass(scss)

    1.用npm/cnpm/yarn安装sass的依赖包 npm install --save-dev sass-loader npm install --save-dev node-sass 或者: y ...

  7. python matplotlib.pyplot对图像进行绘制

    imshow()是对图像进行绘制 imshow()函数格式为: matplotlib.pyplot.imshow(X, cmap=None) X: 要绘制的图像或数组. cmap: 颜色图谱(colo ...

  8. 新数据的GT列表

    制作新数据集时需要重新制作train_GT,test_GT 代码: dic = {} with open('/home/bnrc/all_image_GT.txt','r') as file: for ...

  9. JavaScript中数据类型和typeof返回的数据类型

    除了上图,要注意三点:1.symbol是ES6中新增的数据类型 2.typeof(null)结果是Object 3.typeof(Object)和typeof(Array)的结果是function,因 ...

  10. 浅谈倍增LCA

    题目链接:https://www.luogu.org/problemnew/show/P3379 刚学了LCA,写篇blog加强理解. LCA(Least Common Ancestors),即最近公 ...