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;
  • 相关阅读:
    koa中使用 ejs
    koa 中获取 post 提交数据
    koa-static 静态资源中间件
    koa 中使用 art-template 模板引擎
    koa中使用cookie
    elasticsearch的安装和使用
    J2EE项目中后台定时运行的程序
    pycharm下搭建django开发环境
    什么是反向代理,如何区别反向与正向代理
    ionic build android error when download gradle
  • 原文地址:https://www.cnblogs.com/zyysyang/p/11095500.html
Copyright © 2011-2022 走看看