zoukankan      html  css  js  c++  java
  • 头文件 — 备忘

    /*
                                                 __----~~~~~~~~~~~------___
                                      .  .   ~~//====......          __--~ ~~
                      -.            \_|//     |||\  ~~~~~~::::... /~
                   ___-==_       _-~o~  /    |||  \            _/~~-
           __---~~~.==~||=_    -_--~/_-~|-   |\   \        _/~
       _-~~     .=~    |  \-_    '-~7  /-   /  ||          /
     .~       .~       |   \ -_    /  /-   /   ||         /
    /  ____  /         |     \ ~-_/  /|- _/   .||        /
    |~~    ~~|--~~~~--_      ~==-/   | ~--===~~        .
             '         ~-|      /|    |-~~~       __--~~
                         |-~~-_/ |    |   ~\_   _-~            /
                              /       \__   /~                \__
                          _--~ _/ | .-~~____--~-/                  ~~==.
                         ((->/~   '.|||' -_|    ~~-/ ,              . _||
                                    -_     ~      ~~---l__i__i__i--~~_/
                                    _-~-__   ~)  --______________--~~
                                  //.-~~~-~_--~- |-------~~~~~~~~
                                         //.-~~~--
    */
    #define _CRT_SECURE_NO_WARNINGS
    #include<cstdio>
    #include<iostream>
    #include<cstring>
    #include<algorithm>
    #include<bitset>
    #include<cassert>
    #include<cctype>
    #include<cmath>
    #include<cstdlib>
    #include<ctime>
    #include<deque>
    #include<iomanip>
    #include<list>
    #include<map>
    #include<queue>
    #include<set>
    #include<stack>
    #include<vector>
    #define lt k << 1
    #define rt k << 1 | 1
    #define lowbit(x) x & (-x)
    #define lson l, mid, lt
    #define rson mid+1, r, rt
    using namespace std;
    typedef long long ll;
    typedef long double ld;
    #define fin freopen("in.txt", "r", stdin);
    #define fout freopen("out.txt", "w", stdout);
    #define ios ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
    #define mem(a, b) memset(a, b, sizeof(a))
    //#define int ll
    const double pi = acos(-1.0);
    const double eps = 1e-8;
    const ll mod = 1e9 + 7;
    const int inf = 0x3f3f3f3f;
    const ll INF = 0x3f3f3f3f3f3f3f3f;
    const int maxn = 2e5 + 500;
  • 相关阅读:
    后台架构设计—数据存储层
    Linux应用程序基础
    Linux文件管理命令笔记
    CentOS7搭建LAMP实战
    (ospf、rip、isis、EIGRP)常见的动态路由协议简介
    python while 循环语句
    获取linux帮助命令
    破解linux虚拟机的密码
    gawk编程语言
    MySQL触发器在PHP项目中用来做信息备份、恢复和清空的方法介绍
  • 原文地址:https://www.cnblogs.com/zyysyang/p/11095500.html
Copyright © 2011-2022 走看看