摘要:
#include<bits/stdc++.h> using namespace std; const int N = 1e4 + 10; int a[1000000],b[N]; int nex[N]; void GetNext(int *x,int len) { //int len = s.len 阅读全文
摘要:
宏定义的本质: 字符替换,没有类型转换,一定记住 来看一个例子: #include<bits/stdc++.h> using namespace std; #define AREA(a,b) a+b int main() { int s=AREA(3,4)*AREA(3,4); cout << s 阅读全文