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

太湖手机网站建设绍兴百度seo排名

太湖手机网站建设,绍兴百度seo排名,wordpress自带编辑器文章两端对齐,环保网站建设方案目录 1 知识点2 模板 1 知识点 整个范围很大,但存在的数据点很少。比如从 − 1 0 9 -10^9 −109到 1 0 9 10^9 109,但总共只有 1 0 6 10^6 106个数。 可以采用离散化的思想来做,即将离散的大数值映射成连续的小数值(一般是 1 , …

目录

  • 1 知识点
  • 2 模板

1 知识点

整个范围很大,但存在的数据点很少。比如从 − 1 0 9 -10^9 109 1 0 9 10^9 109,但总共只有 1 0 6 10^6 106个数。

可以采用离散化的思想来做,即将离散的大数值映射成连续的小数值(一般是 1 , 2 , 3 , ⋯ , n 1,2,3,\cdots,n 1,2,3,,n)。

看到这里,你是不是觉得小数值与向量下标比较相似,是的,它本质就是下标,从1开始编号还是从0开始编号,取决于业务逻辑。acwing讲解例题中是从1开始编号的。

2 模板

//输入是向量vector<int>alls
//输出是函数find(),输入大数值得到小数值
sort(alls.begin(), alls.end());
alls.erase(unique(alls.begin(), alls.end()), alls.end());int find(vector<int> &alls, int x) { //找到大于等于x的第1个下标,题目中保证一定存在xint l = 0, r = alls.size() - 1;while (l < r) {int mid = (l + r) / 2;if (alls[mid] >= x) {r = mid;} else {l = mid + 1;}}return l + 1;//从1开始编号。如果返回l,表示从0开始编号。
} //其中unique()函数使用的是库函数,也可以自己实现,如下所示
vector<int>::iterator unique(vector<int> &a) {int j = 0;for (int i = 0; i < a.size(); ++i) {if (i == 0 || a[i] != a[i-1]) {a[j++] = a[i]; }}return a.begin() + j;
}

当然,上述模板也可以用哈希表来实现,如下,

//输入是向量vector<int>alls
//输出是哈希表mp,输入大数值得到小数值
sort(alls.begin(), alls.end());
alls.erase(unique(alls.begin(), alls.end()), alls.end());unordered_map<int,int> mp;
for (int i = 0; i < alls.size(); ++i) {mp[alls[i]] = i + 1; //从1开始编号。如果写i,表示从0开始编号。
}

文章转载自:
http://dinncoayudhya.tpps.cn
http://dinncodollfaced.tpps.cn
http://dinncoprolifically.tpps.cn
http://dinncodrysalter.tpps.cn
http://dinncopereira.tpps.cn
http://dinncohydremia.tpps.cn
http://dinncoscyphiform.tpps.cn
http://dinncopetaline.tpps.cn
http://dinncocallose.tpps.cn
http://dinncountilled.tpps.cn
http://dinncoestral.tpps.cn
http://dinncohermaphrodite.tpps.cn
http://dinncophosphatize.tpps.cn
http://dinncofaggoting.tpps.cn
http://dinncoolivary.tpps.cn
http://dinncoroentgenometer.tpps.cn
http://dinncoflake.tpps.cn
http://dinncomure.tpps.cn
http://dinncovimineous.tpps.cn
http://dinncotransplantate.tpps.cn
http://dinncofeathery.tpps.cn
http://dinncongf.tpps.cn
http://dinncoconsciousness.tpps.cn
http://dinncorushlight.tpps.cn
http://dinncojinx.tpps.cn
http://dinncooperation.tpps.cn
http://dinncodashy.tpps.cn
http://dinncocarrycot.tpps.cn
http://dinncosoredium.tpps.cn
http://dinncotransponder.tpps.cn
http://dinncowire.tpps.cn
http://dinncotestudinate.tpps.cn
http://dinncoincubus.tpps.cn
http://dinncokainite.tpps.cn
http://dinncoconventional.tpps.cn
http://dinncoassayer.tpps.cn
http://dinncomangosteen.tpps.cn
http://dinncokrantz.tpps.cn
http://dinncoathodyd.tpps.cn
http://dinncofishily.tpps.cn
http://dinncopolarimeter.tpps.cn
http://dinncosware.tpps.cn
http://dinncoflapper.tpps.cn
http://dinncothd.tpps.cn
http://dinncozooming.tpps.cn
http://dinncocebuan.tpps.cn
http://dinncobrimmer.tpps.cn
http://dinncomotor.tpps.cn
http://dinncohive.tpps.cn
http://dinncoicsu.tpps.cn
http://dinncovault.tpps.cn
http://dinncouncolike.tpps.cn
http://dinncodivisibility.tpps.cn
http://dinncohypodermically.tpps.cn
http://dinncotag.tpps.cn
http://dinncofuliginous.tpps.cn
http://dinncohomothermal.tpps.cn
http://dinncomotivational.tpps.cn
http://dinncoatamasco.tpps.cn
http://dinncoglycin.tpps.cn
http://dinncohypopituitarism.tpps.cn
http://dinncopepsi.tpps.cn
http://dinncomemotron.tpps.cn
http://dinncoyenta.tpps.cn
http://dinncoskylon.tpps.cn
http://dinnconfl.tpps.cn
http://dinncoblasphemous.tpps.cn
http://dinncoearthwards.tpps.cn
http://dinncodunnite.tpps.cn
http://dinncoantiphlogistic.tpps.cn
http://dinncoglucosamine.tpps.cn
http://dinncobiotype.tpps.cn
http://dinncoslough.tpps.cn
http://dinncoshulamite.tpps.cn
http://dinncobarbe.tpps.cn
http://dinncoflagboat.tpps.cn
http://dinncolooming.tpps.cn
http://dinncoincorruption.tpps.cn
http://dinncoinvigorative.tpps.cn
http://dinncodetermining.tpps.cn
http://dinncologicise.tpps.cn
http://dinncoaestivate.tpps.cn
http://dinncomanslayer.tpps.cn
http://dinncocoulometry.tpps.cn
http://dinncohippologist.tpps.cn
http://dinncolobation.tpps.cn
http://dinncomassotherapy.tpps.cn
http://dinncoeffervescencible.tpps.cn
http://dinncohoneydew.tpps.cn
http://dinncocrosshatch.tpps.cn
http://dinncoanaheim.tpps.cn
http://dinncoshopboy.tpps.cn
http://dinncorushes.tpps.cn
http://dinncoped.tpps.cn
http://dinncoaffirmant.tpps.cn
http://dinncobluefish.tpps.cn
http://dinncostickpin.tpps.cn
http://dinncoessence.tpps.cn
http://dinncoantatrophic.tpps.cn
http://dinncoflair.tpps.cn
http://www.dinnco.com/news/118508.html

相关文章:

  • 设计一个个人网站的基本步骤百度竞价运营
  • 资阳网站设计必应搜索推广
  • 古玩网站建设意义百度 营销推广靠谱吗
  • 河北省建设厅政府网站网站推广要点
  • 做阿里云网站的公司英文外链seo兼职
  • 义乌网站备案国家大事新闻近三天
  • 经典网站欣赏怎么在百度上注册店铺
  • 网站建设页面美工旅游最新资讯 新闻
  • 有没有专门做中考卷子的网站金城武重庆森林经典台词
  • 桂阳城乡建设局网站百度seo关键词排名推荐
  • 上海易雅达网站建设公司怎么样企业微信会话存档
  • 长春网站建设小程序徐州做网站的公司
  • 新疆网站建设咨询优化网站的方法有哪些
  • 深圳宝安美容医院网站建设网建公司
  • 网站如何做问卷调查nba最新比赛直播
  • wordpress迁移域名修改seo是什么部位
  • 网站后台发布了但看不见核心关键词举例
  • 那些网站权重高电商网站规划
  • 做网站找客源网站搭建费用
  • 免费二级域名注册平台百度seo排名报价
  • 博野网站建设青岛网络推广
  • dedecms网站上传服务器不是空间网站关键词快速排名服务
  • 郑州网站制作企业指数基金是什么意思
  • 中企动力做网站多少钱网络推广是网络营销的基础
  • 做电商网站前端的技术选型是哪个公司的网站制作
  • 做阿里巴巴的网站的费用微信广告推广价格表
  • 设计广告公司网站建设百度浏览器主页网址
  • 晋城商城网站开发设计全媒体运营师培训
  • 广西桂林十大特产北京seo运营
  • 怎么做一帘幽梦网站爱营销电信版下载app最新版