当前位置: 首页 > news >正文

潜江建设局网站专门做旅游攻略的网站有哪些

潜江建设局网站,专门做旅游攻略的网站有哪些,wordpress用户安全,模具机械设备东莞网站建设文章目录1. stack 的使用2. stack的模拟实现3. queue的使用4. queue的模拟实现5. deque ——双端队列deque优缺点6. priority_queue ——优先级队列1. priority_queue的使用2. priority_queue的模拟实现push——插入pop ——删除top —— 堆顶仿函数问题完整代码实现1. stack 的… 文章目录1. stack 的使用2. stack的模拟实现3. queue的使用4. queue的模拟实现5. deque ——双端队列deque优缺点6. priority_queue ——优先级队列1. priority_queue的使用2. priority_queue的模拟实现push——插入pop ——删除top —— 堆顶仿函数问题完整代码实现1. stack 的使用 栈不在是一个容器而是一个容器适配器 stack的模板中第二个deque暂时不知道干什么的后面会说 说明stack是一个容器适配器并且为了保证严格的先进后出所以不存在迭代器 #includeiostream #includestack using namespace std;int main() {stackintv;v.push(1);v.push(2);v.push(3);v.push(4);while (!v.empty())//后进先出的原则{cout v.top() ;//4 3 2 1v.pop();}return 0; }2. stack的模拟实现 #includeiostream #includevector #includelist #includestack #includequeue using namespace std; namespace yzq {//适配器模式templateclass T, class Container dequeT//给与缺省值//deque 作为一个双端队列可以非常适用与大量 头插 头删 尾插 尾删 的情况class stack{public:void push(const T x)//插入{_con.push_back(x);//尾插}void pop()//删除栈顶元素{_con.pop_back(); }const T top()//栈顶{return _con.back();}size_t size()//大小{return _con.size();}bool empty()//判空{return _con.empty();}private:Container _con;//Container 是一个符合要求的容器};//适配器模式void test(){yzq::stackintv;v.push(1);v.push(2);v.push(3);v.push(4);while (!v.empty()){cout v.top() ;v.pop();}cout endl;}} 这里假设我们不认识 deque那么如果stack频繁使用pop尾删将vector T 设置成缺省值也是非常适合的 3. queue的使用 队列同样不在是一个容器而是一个容器适配器 说明queue为了保证严格的先进先出所以不存在迭代器 #includeiostream #includestack #includequeue using namespace std;int main() {queueintv;v.push(1);v.push(2);v.push(3);v.push(4);while (!v.empty())//符合先进先出的原则{cout v.front() ;//1 2 3 4v.pop();}return 0; }4. queue的模拟实现 #pragma once namespace yzq {templateclass T, class ContainerdequeT//给与缺省值默认使用listTclass queue{public:void push(const T x){_con.push_back(x);}void pop(){_con.pop_front(); //vector没有头删强行使用erase 效率太低}const T front(){return _con.front();}const T back(){return _con.back();}size_t size(){return _con.size();}bool empty(){return _con.empty();}private:Container _con;//Container 是一个符合要求的容器}; } 这里假设我们不认识 deque那么如果stack频繁使用pop头删将 list T 设置成缺省值也是非常适合的 5. deque ——双端队列 可以在头尾双端进行插入和删除的操作且时间复杂度为O(1)与vetcor比较头插效率高不需要移动元素 与list比较空间利用比较高 而deque就是要综合两者的优点 (想法很美好) deque并不是真正的连续的空间而是由一段段连续的小空间拼接而成的 一段段的小数组若满了不扩容在开辟一块空间通过中控(指针数组)的方式将一个个小数组管理起来 第一个buf数组开的是中控指针数组中间的位置 头插: 尾插: 若中控满了就要扩容但是扩容代价低 若为vector本来为100个int空间需要200个空间就需要扩容2倍 而 中控是一个指针数组里面都是指针可能只需要20个指针就搞定了所以扩容代价相对于低一些 deque优缺点 优点 1.相比于vector扩容代价低 2. 头插 头删尾插尾删效率高 3. 支持随机访问 缺点 1.中间插入删除很难搞 若中间插入删除效率高会影响随机访问的效率牺牲中间插入删除的效率随机访问效率就变高了 2.没有vector和list优点极致 deque你说它跟vector比随机访问速度不如vector跟list比任意位置插入删除效率没list高 这种就搞的很难啦哪一项都不突出但是都会一点 栈和队列都是需要大量的头插头删尾插尾删的而deque在这个场景下效率很高所以deque被当作栈和队列的默认适配容器 6. priority_queue ——优先级队列 1. priority_queue的使用 底层是一个堆默认容器使用vector, 最后一个模板参数代表仿函数 默认使用 less 代表小于 (后面会讲) #includeiostream #includequeue #includefunctional using namespace std; int main() {priority_queueint, vectorintv;//默认为大堆数据大的优先级高v.push(4);v.push(8);v.push(6);v.push(2);while (!v.empty()){cout v.top() ; //8 6 4 2v.pop();}return 0; }正常来说默认建立大堆所以数据大的优先级高 #includeiostream #includequeue #includefunctional int main() {priority_queueint,vectorint,greaterintv;//greater作为仿函数//设置小堆让小的优先级高v.push(4);v.push(8);v.push(6);v.push(2);while (!v.empty()){cout v.top() ; //2 4 6 8v.pop();}return 0; }但若加入仿函数 greater 后则会建立小堆所以数据小的优先级高 2. priority_queue的模拟实现 由于是自己实现的所以要加上命名空间避免冲突 push——插入 void adjustup(int child)//向上调整算法{Compare com;int parent (child - 1) / 2;while (child 0){//建大堆if (com(_con[parent] ,_con[child])){swap(_con[parent], _con[child]);child parent;parent (child - 1) / 2;}else{break;}}} void push(const Tx){_con.push_back(x);adjustup(_con.size() - 1);//向上调整算法}由于是堆的插入而堆本身也是由数组的数据构成的所以数组加入一个数据相当于在堆最后插入一个数据在通过向上调整算法依次交换 不懂向上调整算法的点击这里 pop ——删除 void adjustdown(int parent)//向下调整算法{Compare com;int child parent * 21;//假设为左孩子while (child_con.size()){//建大堆if (child1 _con.size()com(_con[child],_con[child 1]))//child1是防止右孩子不存在导致越界{child;}if (com(_con[parent] ,_con[child]))//将两者换一种说法使之能能够调用即可{swap(_con[parent], _con[child]);parent child;child parent * 2 1;}else{break;}}} void pop(){swap(_con[0], _con[_con.size() - 1]);//首尾交换_con.pop_back();//尾删adjustdown(0);//向下调整算法}由于要删除堆顶的数据所以交换堆尾与堆顶数据在删除堆尾数据默认容器为vector所以有pop_back 尾删的功能而此时堆顶的数据不符合当前的位置所以需要借助向下调整算法把该数据调整到合适的位置 不懂向下调整算法的点击这里 top —— 堆顶 const T top(){return _con[0];}堆是借助数组来实现的所以堆顶的数据就是当前的第一个数据 仿函数问题 template class Tstruct Less{bool operator()(const T x, const T y){return x y;}};template class Tstruct greater{bool operator()(const T x, const T y){return x y;}};仿函数主要是借助两个类 来重载 运算符 ( ) 而 Less ( xy) 用于 建立大堆 greater (xy) 用于建立小堆 Less / greater 分别都是类名 而模板参数 Compare 需要类型 所以 都需要加上 即 Less T / greater T 通过该类型在向上/向下调整算法中分别建立对象通过对象调用对应类less/greater的重载()从而达到目的 若为默认类型Less则调用x y 从而建大堆 当传入greater T 类型后调用对象找到对应greater类型的重载() 调用 x y 从而建小堆 完整代码实现 #includeiostream #includequeue using namespace std; namespace yzq {template class Tstruct Less{bool operator()(const T x, const T y){return x y;}};template class Tstruct greater{bool operator()(const T x, const T y){return x y;}};templateclass T, class ContainervectorT,class CompareLessT class priority_queue//优先级队列{public:void adjustup(int child)//向上调整算法{Compare com;int parent (child - 1) / 2;while (child 0){//建大堆if (com(_con[parent] ,_con[child])){swap(_con[parent], _con[child]);child parent;parent (child - 1) / 2;}else{break;}}}void adjustdown(int parent)//向下调整算法{Compare com;int child parent * 21;//假设为左孩子while (child_con.size()){//建大堆if (child1 _con.size()com(_con[child],_con[child 1]))//child1是防止右孩子不存在导致越界{child;}if (com(_con[parent] ,_con[child]))//将两者换一种说法使之能能够调用即可{swap(_con[parent], _con[child]);parent child;child parent * 2 1;}else{break;}}}void push(const Tx){_con.push_back(x);adjustup(_con.size() - 1);//向上调整算法}void pop(){swap(_con[0], _con[_con.size() - 1]);//首尾交换_con.pop_back();//尾删adjustdown(0);//向下调整算法}const T top(){return _con[0];}size_t size(){return _con.size();}bool empty(){return _con.empty();}private:Container _con;//使用vector实现}; }int main() {//yzq::priority_queueintv;yzq::priority_queueint,dequeint,greaterintv;v.push(1);v.push(5);v.push(8);v.push(4);while (!v.empty()){cout v.top() ;v.pop();}return 0; }
http://www.w-s-a.com/news/76978/

相关文章:

  • 网站服务理念中外商贸网站建设
  • 如何自己建立网站中国建设银行网站忘记密码
  • 什么是a站如何在12366网站上做实名认证
  • 斗蟋蟀网站建设谭谭心怎么建设网站
  • 优秀网站开发商郑州网站建设套餐
  • 做伤残鉴约号网站购物网站建设新闻
  • 黄江网站建设公司自己房子做民宿挂什么网站
  • 手游网站做cpc还是cpm广告号宣武郑州阳网站建设
  • vs连接数据库做网站建立网站
  • 电商网站设计图片素材p2p网站建设石家庄
  • 莲塘网站建设如何文字推广一个婚恋网站
  • 医院网站建设工作汇报WordPress不发邮件了
  • 怎么做外语网站个人网页设计作品ps
  • 网站原型怎么做vps如何建两个网站
  • 商城网站建设源码嘉兴seo计费管理
  • 城乡建设网站证件查询系统wordpress 时间代码
  • php网站建设 关键技术做网站哪家正规
  • 网站开发用什么写得比较好谷歌的英文网站
  • 青岛网站建设公司在哪vivo手机商城
  • 兼职刷客在哪个网站做哪个网站做淘宝客
  • 眼科医院网站开发网络营销特点是什么
  • 提交网站给百度增加wordpress插件
  • 网站建设企业官网体验版是什么Wordpress哪个模板最快
  • 美丽说网站模板湖北可以做网站方案的公司
  • 北京西站进站最新规定建设网站的提成是多少
  • wordpress站点如何加速网站建设描述怎么写
  • 如何免费建造网站免费vi模板网站
  • 商丘做网站多少钱扬州大发网站建设
  • 网站建设哪家性价比高自己做项目的网站
  • 成立一个网站济宁营销型网站建设