上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 50 下一页
摘要: 1、安装Chrome 应用商店, Tampermonkey。 Crx4Chrome插件:Tampermonkey 软件官网:Tampermonkey2、设置主要是占坑待填,,其实也没啥好设置的(逃3、脚本一些比较常用的下载渠道:Greasy Fork:支持中文,按照今... 阅读全文
posted @ 2018-06-09 13:40 gwj1139177410 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 1、程序的大小布局正文段(Text)用于存储指令,二进制代码,程序内容数据段(Data)用于存储已初始化的全局变量BSS段(BSS)用于存储未赋值的全局变量所需的空间 2、程序的内存布局在C++中,内存分成5个区,他们分别是栈区(stack):由编译器自动分配释放,其... 阅读全文
posted @ 2018-06-09 11:29 gwj1139177410 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1、默认命令: g++ test.cpp 功能:生成默认为a.exe的文件。2、命名 -o命令: g++ test.cpp -o test 功能:生成test.exe的文件。3、调试 -g命令: g++ qaq.cpp -o qdq -g 功能:生成用于gdb调试的文... 阅读全文
posted @ 2018-06-09 09:45 gwj1139177410 阅读(763) 评论(0) 推荐(0) 编辑
摘要: problemsolutioncodes#includeusing namespace std;int a[10010], b[10010], g[10010], k[10010];int main(){ int n; cin>>n; for(int i... 阅读全文
posted @ 2018-06-08 22:10 gwj1139177410 阅读(97) 评论(0) 推荐(0) 编辑
摘要: problemsolutioncodes#include#include#includeusing namespace std;int main(){ stacks; string str; cin>>str; bool flag = 1; ... 阅读全文
posted @ 2018-06-08 22:08 gwj1139177410 阅读(112) 评论(0) 推荐(0) 编辑
摘要: problemsolutioncodes#includeusing namespace std;int le[100010], ri[100010], book[100010];int main(){ int n; cin>>n; ri[0] = 1; ... 阅读全文
posted @ 2018-06-08 22:07 gwj1139177410 阅读(81) 评论(0) 推荐(0) 编辑
摘要: problemsolutioncodes#include#includeusing namespace std;stacks;int main(){ char ch; int t=0; while(cin>>ch && ch!='@'){ i... 阅读全文
posted @ 2018-06-08 22:06 gwj1139177410 阅读(72) 评论(0) 推荐(0) 编辑
摘要: problemsolutioncodes#include#include#include#define maxn 100001using namespace std;int a[maxn], b[maxn], c[maxn];int main(){ string... 阅读全文
posted @ 2018-06-08 22:04 gwj1139177410 阅读(106) 评论(0) 推荐(0) 编辑
摘要: problemsolutioncodes//高精减法//高精度的本质,用长度无限的数组或字符串代替int//原理:模拟减法退位#include#include#includeusing namespace std;const int maxn = (int)1e6+1... 阅读全文
posted @ 2018-06-08 22:03 gwj1139177410 阅读(109) 评论(0) 推荐(0) 编辑
摘要: problemsolutioncodes#include#include#include#define maxn 1010using namespace std;int a[maxn],b[maxn],c[maxn];int main(){ string s1,... 阅读全文
posted @ 2018-06-08 22:01 gwj1139177410 阅读(108) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 50 下一页
选择