Compose 附带效应
a. 纯函数
纯函数指的是函数与外界交换数据只能通过函数参数和函数返回值来进行,纯函数的运行不会对外界环境产生任何的影响。比如下面这个函数:
fun Add(a : Int, b : Int) : Int {return a b
}
“副作用”(side effe…
P1162
#include<map> #include<vector> #include<iostream> #include<math.h> #include<algorithm> #include<string> using namespace std;
const int N 1020;
int n; int g[N][N];//标记数组 int a[N][N];//储存数组 int dx[] { -1…