美文网首页
SublimeTextCppHeader

SublimeTextCppHeader

作者: digiter | 来源:发表于2014-08-01 16:44 被阅读0次
    <snippet>
        <content><![CDATA[
    #include <cmath>
    #include <cstdio>
    #include <cstdlib>
    #include <cstring>
    #include <algorithm>
    #include <iostream>
    #include <map>
    #include <numeric>
    #include <queue>
    #include <set>
    #include <sstream>
    #include <string>
    #include <vector>
    #define OUT(x) cerr << #x << ": " << (x) << endl
    #define REP(i, n) for (int i = 0; i < (n); ++i)
    #define SZ(x) ((int)x.size())
    #define UPDATE(x, y) (x > (y) ? (x = (y), true) : false)
    using namespace std;
    typedef long long LL;
    
    int main() {
        ${1}
        return 0;
    }
    ]]></content>
        <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
        <tabTrigger>header</tabTrigger>
        <!-- Optional: Set a scope to limit where the snippet will trigger -->
        <scope>source.c++</scope>
    </snippet>

    相关文章

      网友评论

          本文标题:SublimeTextCppHeader

          本文链接:https://www.haomeiwen.com/subject/tgtetttx.html