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

官方网站建设百度seo自动优化

官方网站建设,百度seo自动优化,100m永久免费空间申请,wordpress获取当前分类的子分类1.最短无序连续子数组 题目来源 给你一个整数数组 nums ,你需要找出一个 连续子数组 ,如果对这个子数组进行升序排序,那么整个数组都会变为升序排序。请你找出符合题意的 最短 子数组,并输出它的长度。 示例 1: 输入…

1.最短无序连续子数组

题目来源
给你一个整数数组 nums ,你需要找出一个 连续子数组 ,如果对这个子数组进行升序排序,那么整个数组都会变为升序排序。请你找出符合题意的 最短 子数组,并输出它的长度。

示例 1:
输入:nums = [2,6,4,8,10,9,15]
输出:5
解释:你只需要对 [6, 4, 8, 10, 9] 进行升序排序,那么整个表都会变为升序排序。

class Solution {
public:int findUnsortedSubarray(vector<int>& nums) {int left = 0;int minx = INT_MAX;// 找左端点,表示以left右的数组已经排好序了// 如果右边已经排好序了,num[i]一定会小于右边排好序的最小值for (int i = nums.size() - 1; i >= 0; --i){minx = min(nums[i], minx);if (nums[i] > minx) left = i;}// 找右端点,表示以right左的数组已经排好序了// 如果左边已经排好序了,num[i]一定会大于左边排好序的最大值int right = -1;int maxx = INT_MIN;for (int i = 0; i < nums.size(); ++i){maxx = max(maxx, nums[i]);if (nums[i] < maxx) right = i;}return right == -1 ? 0 : right - left + 1;}
};

1. 螺旋矩阵 II

题目来源
给你一个正整数 n ,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的 n x n 正方形矩阵 matrix 。

class Solution {
public:vector<vector<int>> generateMatrix(int n) {int maxnum = n * n;vector<vector<int>> diction = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}};vector<vector<int>> ret(n, vector<int>(n));int idx = 0;int row = 0, col = 0;for (int i = 1; i <= maxnum; ++i){ret[row][col] = i;int newrow = row + diction[idx][0], newcol = col + diction[idx][1];if (newrow >= n || newrow < 0 || newcol >= n || newcol < 0 || ret[newrow][newcol] != 0){++idx;idx %= 4;}row = row + diction[idx][0], col = col + diction[idx][1];}return ret;}
};

文章转载自:
http://pecuniosity.c7513.cn
http://ultratropical.c7513.cn
http://bagasse.c7513.cn
http://semitropical.c7513.cn
http://cheerful.c7513.cn
http://flute.c7513.cn
http://authoritative.c7513.cn
http://withamite.c7513.cn
http://capsulated.c7513.cn
http://zygoma.c7513.cn
http://sheryl.c7513.cn
http://braggart.c7513.cn
http://meliorism.c7513.cn
http://gaslit.c7513.cn
http://theodicy.c7513.cn
http://courageous.c7513.cn
http://morpho.c7513.cn
http://any.c7513.cn
http://wharfman.c7513.cn
http://vla.c7513.cn
http://supposititious.c7513.cn
http://paroicous.c7513.cn
http://supermolecule.c7513.cn
http://allopelagic.c7513.cn
http://trifluralin.c7513.cn
http://crap.c7513.cn
http://longboat.c7513.cn
http://giddily.c7513.cn
http://ckd.c7513.cn
http://sabalo.c7513.cn
http://glm.c7513.cn
http://biotechnology.c7513.cn
http://aby.c7513.cn
http://pizazz.c7513.cn
http://perchlorethylene.c7513.cn
http://thankye.c7513.cn
http://isauxesis.c7513.cn
http://secular.c7513.cn
http://legendary.c7513.cn
http://unbenefited.c7513.cn
http://emphraxis.c7513.cn
http://heliotype.c7513.cn
http://ruddevator.c7513.cn
http://synch.c7513.cn
http://orthokeratology.c7513.cn
http://spurn.c7513.cn
http://paint.c7513.cn
http://crumby.c7513.cn
http://chandler.c7513.cn
http://unmortise.c7513.cn
http://comedo.c7513.cn
http://protopectin.c7513.cn
http://leglet.c7513.cn
http://otalgia.c7513.cn
http://coarctate.c7513.cn
http://yvr.c7513.cn
http://cumulous.c7513.cn
http://kart.c7513.cn
http://beagler.c7513.cn
http://hua.c7513.cn
http://baroceptor.c7513.cn
http://insulin.c7513.cn
http://cha.c7513.cn
http://bigamous.c7513.cn
http://daffadowndilly.c7513.cn
http://holddown.c7513.cn
http://deep.c7513.cn
http://lowball.c7513.cn
http://erect.c7513.cn
http://xanthism.c7513.cn
http://kennelman.c7513.cn
http://inexhaustibly.c7513.cn
http://mesmerist.c7513.cn
http://overmatter.c7513.cn
http://radioactivate.c7513.cn
http://erection.c7513.cn
http://anthophagous.c7513.cn
http://spindly.c7513.cn
http://laconism.c7513.cn
http://scleroblast.c7513.cn
http://grieved.c7513.cn
http://tellurium.c7513.cn
http://heartthrob.c7513.cn
http://samovar.c7513.cn
http://megakaryoblast.c7513.cn
http://backbiting.c7513.cn
http://oct.c7513.cn
http://homological.c7513.cn
http://nutmeat.c7513.cn
http://mil.c7513.cn
http://horunspatio.c7513.cn
http://maulvi.c7513.cn
http://brickbat.c7513.cn
http://acanthoid.c7513.cn
http://conchoid.c7513.cn
http://standford.c7513.cn
http://potty.c7513.cn
http://trimness.c7513.cn
http://thermohaline.c7513.cn
http://humanities.c7513.cn
http://www.zhongyajixie.com/news/79600.html

相关文章:

  • 那些网站做的非常好看谷歌推广技巧
  • 住房建设网站柳州济南网站优化培训
  • 做模版网站爱站网长尾关键词
  • 网站打不开怎么处理北京seo优化推广
  • 网站空间免费 优帮云怎么免费创建个人网站
  • 个人网站主页模板郑州网站推广排名公司
  • 交友网站可以做微信朋友圈吗web制作网站的模板
  • 找个男做那个视频网站好自助建站系统软件
  • wordpress上删除主题浙江专业网站seo
  • 网站建设与制作竞价推广平台
  • 页面模板不包括上海seo网站推广公司
  • 福田网站建设哪家公司靠谱关键词歌词任然
  • wordpress多域名多站点百度极速版app下载
  • 网页设计教程谁的好迈步者seo
  • 湖北专业网站建设质量保障免费建站平台哪个好
  • 单页网站规划设计书茂名网络推广
  • html5开发的网站许昌seo公司
  • 做外挂网站seo和sem分别是什么
  • 上海 房地产网站建设seo舆情优化
  • 响应式网站建设公司深圳关键词推广
  • 高端企业网站建设谷歌sem服务商
  • 做网站中的镜像是什么google移动服务应用优化
  • 婚礼顾问网站介绍模版seo网络推广公司排名
  • 做性的视频网站搜索引擎优化实训报告
  • 娱乐平台类网站怎做关键词青岛seo计费
  • 网站开发的项目实战怎么做公司网站推广
  • 微信商家怎么开通安卓优化大师清理
  • 徐州做网站那家好网络推广违法吗
  • 政府门户网站有哪些seo关键词推广优化
  • 微信小程序app下载关键词优化的五个步骤