码迷,mamicode.com
首页 >  
搜索关键字:unordered_map    ( 220个结果
1033 To Fill or Not to Fill
link #include <cstdio> #include <cmath> #include <vector> #include <algorithm> #include <climits> #include <unordered_map> #include <cstdio> #include ...
分类:其他好文   时间:2020-03-07 09:43:40    阅读次数:61
LeetCode--算法,简单级别1
#include "stdafx.h" #include "LeetCode_S.h" #include <unordered_map> #include <math.h> #include <stack> using namespace std; CLeetCode_Solution* CLeet ...
分类:编程语言   时间:2020-03-03 22:42:51    阅读次数:83
1095 解码PAT准考证
麻烦的一批!!!还好题目比较耿直,按要求输出即可,超时就换unordered_map。 新学了小玩意STL-pair,可以理解成一个结构体。 struct pair{ typename1 first; typename2 second; }; 用途: 1.可以代替二元结构体及其构造函数,节省编码时间 ...
分类:其他好文   时间:2020-02-26 18:47:38    阅读次数:62
1080 MOOC期终成绩
这是一道常规体了。 PAT乙级最后一道大题一般是 结构体+排序 +字符串+hash。 1 #include<iostream> 2 #include<unordered_map> 3 #include<algorithm> 4 #include<cmath> 5 using namespace st ...
分类:其他好文   时间:2020-02-25 17:37:13    阅读次数:67
2月24-第二次机试课记录
2月24 第二次机试课记录 总结 模拟的优化可以考虑使用STL来减少时间复杂度 对于时间复杂度的减低 在方法上,对n减低到logn这类思路上的转变 还要考虑各种细节,比如 输入输出,使用printf而不是cout mp.count()反而是多余的判断 使用unordered_map 对于题目有的时候 ...
分类:其他好文   时间:2020-02-24 23:50:32    阅读次数:77
74. 数组中唯一只出现一次的数字
没按题目要求做啊 class Solution { public: int findNumberAppearingOnce(vector<int>& nums) { int n=nums.size()-1; unordered_map<int,int > hash; for(int i=0;i<=n ...
分类:编程语言   时间:2020-02-21 09:56:54    阅读次数:72
1041 考试座位号
水题。发现PAT考察hash很多。 #include<iostream> #include<unordered_map> using namespace std; struct Student { string id;//学号 int sitNum;//考试座位号 }; int main() { i ...
分类:其他好文   时间:2020-02-19 19:06:10    阅读次数:60
61. 最长不含重复字符的子字符串
视频:AcWing 61. 最长不含重复字符的子字符串 C++里面的hash表:unordered_map<> class Solution {public: int longestSubstringWithoutDuplication(string s) { unordered_map<char, ...
分类:其他好文   时间:2020-02-19 00:53:54    阅读次数:66
1054 The Dominant Color
大致题意就是给出N行M列的元素,找出出现次数最多的元素并输出。 #include<iostream> #include<unordered_map> using namespace std; int main() { unordered_map<int,int> mp; int m,n; cin>> ...
分类:其他好文   时间:2020-02-16 20:17:05    阅读次数:51
ZOJ1006 Do the Untwist
简单模拟~ #include<bits/stdc++.h> using namespace std; const int maxn=1e6+14; int a[maxn]; unordered_map<char,int> pos; string s="_abcdefghijklmnopqrstuvw ...
分类:其他好文   时间:2020-02-15 13:50:50    阅读次数:51
220条   上一页 1 ... 3 4 5 6 7 ... 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!