近期再写map的demo时出现了下面一段报错,于是带着疑惑去看了一下源码
目的:主要想知道为啥map不让并发读写
fatal error: concurrent map read and map write
一.map的数据结构
先有个印象,后续会详细介绍
// A header for a Go map.
ty…
A. Verify Password 思路:按照ASCLL值进行比较就行(因为字母的ASCLL本来就在数字后面),所以,只要找到前面比后面的数大就输出NO,反之YES
代码实现:
#include<bits/stdc.h>
using namespace std;
#define N 100005
typedef long long ll;
ll n, m, num, sum, t;
ll a[N]…