码迷,mamicode.com
首页 >  
搜索关键字:pragma macro    ( 2934个结果
Mysql InnoDb 存储结构
该文章是读了https://blog.csdn.net/bohu83/article/details/81086474的读书总结,感谢原作者的辛勤付出 InnoDb存储结构说明 从上图可以看出,InnoDb的存储空间主要分为 段,簇,页,行。四大结构 段是表空间文件中的主要组织结构,它是一个逻辑概念 ...
分类:数据库   时间:2020-09-08 20:49:09    阅读次数:45
软件机器人流程自动化蓄势待发,一文看懂软件机器人与宏的区别
最近国内大火的软件机器人和Excel宏(Macro)都能用于自动处理日常的工作任务,帮用户节约时间,提高工作效率。那么,这两个新与旧的办公软件之间,到底有什么区别呢?Excel的宏,到底是什么?Excel表格里面的宏,它能记住用户在Excel表格里的任务步骤,并且自动执行重复、相同的任务操作。所以它是一种能记录工作任务的功能,只要是和Excel有关的任何操作,都能用宏实现自动化。比如,每周五要在E
分类:其他好文   时间:2020-08-28 14:46:11    阅读次数:46
Educational Codeforces Round 21
Educational Codeforces Round 21 A. Lucky Year 个位数直接输出$1$ 否则,假设$n$十进制最高位的值为$s$,答案就是$s-(n\mod s)$ view code #pragma GCC optimize("O3") #pragma GCC optim ...
分类:其他好文   时间:2020-08-25 15:43:40    阅读次数:44
Educational Codeforces Round 19
Educational Codeforces Round 19 A. k-Factorization 找出所有质因子,把多的合并一下 view code //#pragma GCC optimize("O3") //#pragma comment(linker, "/STACK:1024000000 ...
分类:其他好文   时间:2020-08-19 19:49:08    阅读次数:61
约瑟夫问题--循环链表解决方案
//头文件circlelist.h #pragma once #ifndef CIRCLELIST_H_ #define CIRCLELIST_H_ #include<iostream> using namespace std; struct circleNode{ float data; circ ...
分类:其他好文   时间:2020-08-10 22:06:07    阅读次数:67
关于 pragma使用
##如果你知道你的代码不会导致内存泄露,你可以通过加入这些代码忽略这些警告 #pragma clang diagnostic push #pragma clang diagnostic ignored "-Warc-performSelector-leaks" [myObj performSelec ...
分类:其他好文   时间:2020-08-03 23:07:01    阅读次数:73
[2020杭电多校第三场]1008 Triangle Collision
唯一难点应该在于怎么转点吧,直接看代码呗。 //#pragma GCC optimize("-Ofast","-funroll-all-loops") //#pragma GCC optimize(2) //freopen("C://std/a.in","r",stdin); //freopen(" ...
分类:其他好文   时间:2020-07-29 17:46:49    阅读次数:81
模板 BSGS
BSGS存在的目的是求中x的解,BSGS算法要求A与C互质,且C为质数。 #pragma warning(disable:4996) #include<iostream> #include<algorithm> #include<bitset> #include<tuple> #include<un ...
分类:其他好文   时间:2020-07-29 10:09:32    阅读次数:60
LibreOJ - 10147 (区间dp)
#pragma warning (disable : 4996) #include<iostream> #include<algorithm> //#include<unordered_map> #include<fstream> #include<iomanip> #include<string> ...
分类:其他好文   时间:2020-07-29 09:54:50    阅读次数:66
HDU-3652(数位dp)
#pragma warning (disable : 4996) #include<iostream> #include<algorithm> //#include<unordered_map> #include<fstream> #include<iomanip> #include<string> ...
分类:其他好文   时间:2020-07-29 00:41:30    阅读次数:78
2934条   上一页 1 2 3 4 5 6 ... 294 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!