最新 最热

Array - 42. Trapping Rain Water Hard

Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.

2020-09-23
1

Trie - 211. Add and Search Word - Data structure design

211. Add and Search Word - Data structure design Design a data structure that supports the following two operations:

2020-09-23
1

Array - 217. Contains Duplicate

Given an array of integers, find if the array contains any duplicates.

2020-09-23
0

Array - 219. Contains Duplicate II

Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the absolute d...

2020-09-23
1

【剑指Offer】II-数组中数字出现的次数 II

在一个数组 nums 中除一个数字只出现一次之外,其他数字都出现了三次。请找出那个只出现一次的数字。

2020-09-16
0

python basemap制作utm遥感图(改)

投影坐标是正确了,但是不美观啊,不过暂时也只能这样了。。。慢慢琢磨有没有其他参数可以修改吧。。。另外还有一个问题就是0值镂空,暂时也还没完善。...

2020-09-15
1

蓝桥杯 试题 基础练习 报时助手

map用法 水题#include<bits/stdc++.h>using namespace std; int main(){pair<int,string>temp[] = {{0,"zero"}, {1, "one"}, {2,"two"}, {3,"three"}, {4,"four"},......

map
2020-09-11
0

杭电1228 --map的应用

#include<bits/stdc++.h>using namespace std;map<string,int> mp;int main(){mp["zero"]=0;mp["one"]=1;mp["two"]=2;mp["three"]=3;mp["four"]=4;mp["five"]=5;mp["s......

map
2020-09-11
0

P1598 垂直柱状图

思路:采用map,很容易就能统计到整篇文章中的各个大写字符的次数,主要是对格式的控制,那么我们先要得到最多有多少行,然后就是对每行进行操作了,那么如果其是大于等于当前字符的数量,那么就打印*,否则打印空格。...

2020-09-11
0

水果

题意:就是最后给出哪个地方哪种水果买了多少钱,首先是地方联系水果,水果又联系数量~!这摆明了是用map啊,并且还应该是镶嵌的map. 就是迭代器写的时候难写了一点~...

map
2020-09-11
0