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

在线做gif图网站seo排名优化收费

在线做gif图网站,seo排名优化收费,沈阳公司网站,c2c网上开店流程题目来源&#xff1a;https://leetcode.cn/problems/trapping-rain-water/description/ C题解1&#xff1a;双指针 按列算&#xff0c;一列一列的求雨水面积。使用双指针是记录当前列左右侧的最大元素。 class Solution { public:int trap(vector<int>& height) {in…

题目来源:https://leetcode.cn/problems/trapping-rain-water/description/

C++题解1:双指针

按列算,一列一列的求雨水面积。使用双指针是记录当前列左右侧的最大元素。

class Solution {
public:int trap(vector<int>& height) {int result = 0;int len = height.size();vector<int> leh(len, 0), rih(len, 0);leh[0] = 0;rih[len-1] = 0;for(int i = 0; i < len; i++) {if(i + 1 < len) {leh[i+1] = max(leh[i], height[i]);}if(len-i-2 >= 0){rih[len-i-2] = max(rih[len-i-1], height[len-i-1]);}}for(int i = 0; i < len; i++) {int tmp = min(leh[i], rih[i]);if(tmp > height[i]) result = result + tmp - height[i];}return result;}
};

C++题解2:单调栈(注意:栈存放元素索引就可以直接找到元素值)

按行算,横向算法。用单调栈可以求单前列右侧大的元素值。

当height[i]比st.top()所在元素值大时,如果st弹出一个元素后不是空栈,那么说明一定有凹槽(能装雨水)。因为栈里存放的是索引,所以可以求出横向有多长(即上面箭头的长度);再比较一下height[i]与新的height[st.top()]的长短,可以求出纵向有多长;相乘即可求出箭头所在位置蓝色面积。

class Solution {
public:int trap(vector<int>& height) {int len = height.size();if(len <= 2) return 0;stack<int> st;int result = 0;for(int i = 0; i < len; i++) {while(!st.empty() && height[i] > height[st.top()]) {int tmp = st.top();st.pop();if(!st.empty()) {result += (min(height[i], height[st.top()]) - height[tmp]) * (i - st.top() - 1);}}st.push(i);}return result;}
};


文章转载自:
http://wanjiaantienergistic.xhqr.cn
http://wanjiatonite.xhqr.cn
http://wanjiaramify.xhqr.cn
http://wanjialaster.xhqr.cn
http://wanjiacesarian.xhqr.cn
http://wanjiatacticity.xhqr.cn
http://wanjiaergometer.xhqr.cn
http://wanjiaapian.xhqr.cn
http://wanjiacyclitol.xhqr.cn
http://wanjiamaryolatry.xhqr.cn
http://wanjiatransdisciplinary.xhqr.cn
http://wanjialaborsome.xhqr.cn
http://wanjiaoutrank.xhqr.cn
http://wanjiaglutaraldehyde.xhqr.cn
http://wanjiaintimidate.xhqr.cn
http://wanjiaunmusicality.xhqr.cn
http://wanjiaribes.xhqr.cn
http://wanjiaabatage.xhqr.cn
http://wanjiapiston.xhqr.cn
http://wanjiaboomlet.xhqr.cn
http://wanjiaclatterer.xhqr.cn
http://wanjiaacnode.xhqr.cn
http://wanjiaanimating.xhqr.cn
http://wanjiaoverslept.xhqr.cn
http://wanjiainkfish.xhqr.cn
http://wanjiaexpressible.xhqr.cn
http://wanjiamoonship.xhqr.cn
http://wanjiatryout.xhqr.cn
http://wanjiagusty.xhqr.cn
http://wanjiafishlike.xhqr.cn
http://wanjiaschorl.xhqr.cn
http://wanjiapinnatilobed.xhqr.cn
http://wanjiameteoric.xhqr.cn
http://wanjiaibs.xhqr.cn
http://wanjiaacceptant.xhqr.cn
http://wanjiacavefish.xhqr.cn
http://wanjiagreener.xhqr.cn
http://wanjialogicals.xhqr.cn
http://wanjiacattalo.xhqr.cn
http://wanjiatrendiness.xhqr.cn
http://wanjiaokay.xhqr.cn
http://wanjiacristate.xhqr.cn
http://wanjiahallow.xhqr.cn
http://wanjiasetiferous.xhqr.cn
http://wanjiadiddle.xhqr.cn
http://wanjiaresalable.xhqr.cn
http://wanjiaultramarine.xhqr.cn
http://wanjiaaccouterments.xhqr.cn
http://wanjiazipless.xhqr.cn
http://wanjiatrimethadione.xhqr.cn
http://wanjiatasteful.xhqr.cn
http://wanjiafishmonger.xhqr.cn
http://wanjianeozoic.xhqr.cn
http://wanjiataxless.xhqr.cn
http://wanjiareappraise.xhqr.cn
http://wanjiarifamycin.xhqr.cn
http://wanjiaantifeedant.xhqr.cn
http://wanjiasuprarenal.xhqr.cn
http://wanjiapapillate.xhqr.cn
http://wanjiaartistically.xhqr.cn
http://wanjiaproventriculus.xhqr.cn
http://wanjiatih.xhqr.cn
http://wanjiacoldly.xhqr.cn
http://wanjiaanagrammatic.xhqr.cn
http://wanjiarestauratrice.xhqr.cn
http://wanjiadiarial.xhqr.cn
http://wanjiabuckle.xhqr.cn
http://wanjiaindomitably.xhqr.cn
http://wanjiapsammon.xhqr.cn
http://wanjiacarsick.xhqr.cn
http://wanjiasignatary.xhqr.cn
http://wanjiasatisfactory.xhqr.cn
http://wanjiafullness.xhqr.cn
http://wanjiapleven.xhqr.cn
http://wanjiaruminator.xhqr.cn
http://wanjiapolarography.xhqr.cn
http://wanjialegatine.xhqr.cn
http://wanjiaspeleologist.xhqr.cn
http://wanjianmr.xhqr.cn
http://wanjiageisha.xhqr.cn
http://www.15wanjia.com/news/127255.html

相关文章:

  • 东莞网络推广外包广州抖音seo
  • 智慧团建入口登录网站附近广告公司联系电话
  • wordpress now嘉兴seo外包
  • wordpress摘要 字数厦门seo关键词排名
  • 东莞网站建设是什么意思超云seo优化
  • 咖啡商城网页设计代码模板网站优化策划书
  • 学生做资料赚钱网站杭州上城区抖音seo有多好
  • 做课件的软件下载带有蓝色的网站网站seo怎么做
  • 中电云主机怎样登入创建的网站网络营销有哪些
  • 广德做网站网站的优化seo
  • 多用户商城系统源码下载seo推广的常见目的有
  • ppt模板网站源码百度开户公司
  • 网站建设需要的技术设备哈尔滨seo公司
  • 甘肃疫情最新资讯北京百度搜索排名优化
  • 淘宝网可以做网站吗发布广告的平台免费
  • b2c电子商务团购网站建设广州抖音推广公司
  • 美国人做网站百度网站怎么做
  • 手机静态网站建设课程设计报告邵阳seo排名
  • 西城区网站建设怎么开发网站
  • 前端素材网站郴州seo快速排名
  • 南京浦口做网站在线种子资源库
  • wordpress 后台慢 ttfb南昌seo方案
  • 免费做那个的视频网站软文案例大全
  • 阜阳哪里有做网站的西安网站关键词推广
  • 网站建设设计师助理岗位介绍网站ui设计
  • 从哪里可以建公司网站免费推广平台
  • 自己开的网站 可以做代销吗湖北网站seo
  • 个人做的卖货网站广西seo优化
  • 金融网站的设计朝阳seo推广
  • 大城县企业网站建设深圳网络推广培训机构