美文网首页
2020-12-13

2020-12-13

作者: 预眸丶 | 来源:发表于2020-12-13 22:10 被阅读0次

    CSP问题:

    由于对于各种函数类型模式不熟悉的缘故,导致代码能力下降,以后需要减少对于这一类信息的搜索,或者每一次搜索后都要尽量记得内容

    C++中sort在#include <algorithm>中

    优先队列的默认选项是大顶堆 即priority_queue <int>;

    priority_queue <int,vector<int>,greater<int> > q;

    //降序队列 priority_queue <int,vector<int>,less<int> >q;

    自定义cmp

    struct tmp2 //重写仿函数

    {

        bool operator() (tmp1 a, tmp1 b)

        {

            return a.x < b.x; //大顶堆

        }

    };

    相关文章

      网友评论

          本文标题:2020-12-13

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