题解 | #判断元素是否出现#

判断元素是否出现

https://www.nowcoder.com/practice/0787459e92bc4360ba48b094b7f21577

#include<bits/stdc++.h>
#include <cstddef>
#include <map>
using namespace std;
int main(){
	//write your code here......
	int n,num ;
	cin >> n;
	cin>>num;

	map<int,int>maps;
	for(int i = 0 ; i < n; i++ ){
		int key;
		cin >> key;
		maps[key] = 1;
	}

	for(int i =0;i < num;i++){
		int key;
		cin >> key;
		if(maps[key] != NULL){
			cout << "yes"<<endl;
		}else{
			cout << "no"<<endl;
		}
	}

	







	return 0;
}

全部评论

相关推荐

10-05 23:02
东北大学 Java
我说句实话啊:那时候看三个月培训班视频,随便做个项目背点八股,都能说3 40w是侮辱价
点赞 评论 收藏
分享
无敌虾孝子:喜欢爸爸还是喜欢妈妈
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务