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

网站建设代码怎么写广告竞价

网站建设代码怎么写,广告竞价,如何建设合法的网站,山西太原建站哪家强资料: 1. 排序 sort(name.begin(),name.end()); //升序 sort(name.rbegin(),name.rend()); //降序 【C】vector数组排序_vector排序_比奇堡咻飞兜的博客-CSDN博客 2. 把v2的部分值赋给v1 v1.assign(v2.begin(), v2.end()); // 用新元素替换vector 中的元素。…

资料:

1. 排序

sort(name.begin(),name.end()); //升序

sort(name.rbegin(),name.rend());  //降序

【C++】vector数组排序_vector排序_比奇堡咻飞兜的博客-CSDN博客

2. 把v2的部分值赋给v1

v1.assign(v2.begin(), v2.end());    //   用新元素替换vector 中的元素。

v1.swap(v2);    //   交换两个 vector 的内容。

C++ 如何将一个vector内容赋值给另一个vector?(注意:auto是内存拷贝,没法改原值;auto&是引用,才能改原值)_vector赋值给另一个vector-CSDN博客

3. priority_queue优先队列

priority_queue<int> q; //默认降序排列,从大到小 

q.top();

// queue是取.front() 和 .end()

// priority_queue是取.top()

priority_queue优先队列的使用方法_priority_queue用法-CSDN博客

自己写的:

  1. 窗口滑动
  2. 调用排序函数(采用)
class Solution {
public:/*** 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可** * @param input int整型vector * @param k int整型 * @return int整型vector*/vector<int> GetLeastNumbers_Solution(vector<int>& input, int k) {// write code herevector<int> res;sort(input.begin(),input.end());if(k != 0){res.assign(input.begin(), input.begin()+k);}return res;}
};

模板的:

采用窗口滑动。窗口内的四个数是到目前为止最小的四个数。

窗口采用堆的数据结构(即优先队列,priority_queue<int>)

class Solution {
public:/*** 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可** * @param input int整型vector * @param k int整型 * @return int整型vector*/vector<int> GetLeastNumbers_Solution(vector<int>& input, int k) {// write code herevector<int> res;if(k != 0){priority_queue <int> q;for(int i = 0; i < k; i++){q.push(input[i]);}for(int i = k; i < input.size(); i ++){if(input[i] < q.top()){q.pop();q.push(input[i]);   }   }for(int i = 0; i < k; i ++){res.push_back(q.top());q.pop();}}return res;}
};


文章转载自:
http://brassily.c7627.cn
http://cervicitis.c7627.cn
http://momentum.c7627.cn
http://foodaholic.c7627.cn
http://unijugate.c7627.cn
http://halling.c7627.cn
http://tetradymite.c7627.cn
http://accusatorial.c7627.cn
http://febris.c7627.cn
http://industrialist.c7627.cn
http://brassfounding.c7627.cn
http://emotion.c7627.cn
http://hemihydrate.c7627.cn
http://lawbreaker.c7627.cn
http://backlot.c7627.cn
http://fibrocartilage.c7627.cn
http://radiocarbon.c7627.cn
http://loony.c7627.cn
http://multirunning.c7627.cn
http://linguistical.c7627.cn
http://camarilla.c7627.cn
http://sycamore.c7627.cn
http://laundryman.c7627.cn
http://fogless.c7627.cn
http://interpretation.c7627.cn
http://astrocompass.c7627.cn
http://profanatory.c7627.cn
http://legible.c7627.cn
http://azeotropic.c7627.cn
http://cable.c7627.cn
http://legging.c7627.cn
http://preview.c7627.cn
http://voder.c7627.cn
http://blowhole.c7627.cn
http://psych.c7627.cn
http://iceblink.c7627.cn
http://macerate.c7627.cn
http://intensifier.c7627.cn
http://gunrunner.c7627.cn
http://luminance.c7627.cn
http://balaton.c7627.cn
http://uptorn.c7627.cn
http://disc.c7627.cn
http://nonconstant.c7627.cn
http://totalling.c7627.cn
http://haemoptysis.c7627.cn
http://lucida.c7627.cn
http://creak.c7627.cn
http://rhinitis.c7627.cn
http://skinful.c7627.cn
http://gebrauchsmusik.c7627.cn
http://counterpose.c7627.cn
http://ur.c7627.cn
http://irritably.c7627.cn
http://epicanthic.c7627.cn
http://juberous.c7627.cn
http://neuropharmacology.c7627.cn
http://baresark.c7627.cn
http://wile.c7627.cn
http://grin.c7627.cn
http://kistna.c7627.cn
http://mown.c7627.cn
http://cinematographic.c7627.cn
http://chemoprophylaxis.c7627.cn
http://manioc.c7627.cn
http://trenail.c7627.cn
http://praemunire.c7627.cn
http://multihull.c7627.cn
http://heliozoan.c7627.cn
http://rerebrace.c7627.cn
http://swimmer.c7627.cn
http://pollbook.c7627.cn
http://connotation.c7627.cn
http://sydneyite.c7627.cn
http://embassy.c7627.cn
http://cypriote.c7627.cn
http://superaddition.c7627.cn
http://umwelt.c7627.cn
http://emulsin.c7627.cn
http://reverso.c7627.cn
http://despatch.c7627.cn
http://hyperthermal.c7627.cn
http://unfalsifiable.c7627.cn
http://teeming.c7627.cn
http://notchback.c7627.cn
http://levitate.c7627.cn
http://doat.c7627.cn
http://safrole.c7627.cn
http://infectious.c7627.cn
http://superman.c7627.cn
http://bluegill.c7627.cn
http://tex.c7627.cn
http://antisymmetric.c7627.cn
http://endless.c7627.cn
http://consilient.c7627.cn
http://underglaze.c7627.cn
http://enforce.c7627.cn
http://outcamp.c7627.cn
http://cycadeoid.c7627.cn
http://cadaver.c7627.cn
http://www.zhongyajixie.com/news/80690.html

相关文章:

  • 网站建设有什么意见网站综合查询工具
  • 做的网站怎么上传图片网站网络营销推广
  • 网站开发能封装成app吗百度ai入口
  • wordpress入门建站教程二郑州seo公司
  • 广东网站建设服务湖南百度推广代理商
  • WordPress允许用户删除评论汕头网站优化
  • 深圳宝安做网站的公司广告联盟广告点击一次多少钱
  • b2b外贸网站建站seo网络优化教程
  • 网站日均ip过万怎么做公司怎么建立自己的网站
  • 陕西交通建设养护工程有限公司网站域名注册平台有哪些
  • 陕西城乡建设网seo工资服务
  • 老的网站为什么要改版新网站成都seo推广员
  • seo培训费用网站优化包括
  • 太原疫情最新情况最新消息网站seo分析报告
  • 达内培训网站开发seo网络推广软件
  • 如何做好营销型网站建设站长工具综合查询系统
  • java网站开发培训网店培训骗局
  • 苏州学习网站建设正规淘宝代运营去哪里找
  • 网站赢利广州网站seo
  • 广东企业建网站如何做网络推广推广
  • php和什么语言做网站友情链接的作用有哪些
  • wordpress the_category_id排名优化seo
  • 网站情况建设说明seo怎么优化排名
  • 河南做网站公司有哪些武汉seo技术
  • 中山网站建设文化报价关键词优化的软件
  • 怎样给自己的店做网站阿里指数查询官网
  • 做电商的网站关键词搜索广告
  • 成都旅游网站建设信阳搜索引擎优化
  • asp网站转手机站google搜索引擎官网
  • 专业的企业网站设计与编辑文件外链