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

晋江做鞋子批发的网站营销推广方法有哪些

晋江做鞋子批发的网站,营销推广方法有哪些,wordpress用户登录界面插件,seo整站优化解决方案大家好呀,本博客目的在于记录暑假学习打卡,后续会整理成一个专栏,主要打算在暑假学习完数据结构,因此会发一些相关的数据结构实现的博客和一些刷的题,个人学习使用,也希望大家多多支持,有不足之…

大家好呀,本博客目的在于记录暑假学习打卡,后续会整理成一个专栏,主要打算在暑假学习完数据结构,因此会发一些相关的数据结构实现的博客和一些刷的题,个人学习使用,也希望大家多多支持,有不足之处也请指出,谢谢大家。

一,力扣115,最小栈

. - 力扣(LeetCode)

简单用数组模拟一个栈即可,不过我这里图省事运行速度不太高,优化空间很大

class MinStack {int[] el;int numsize;public MinStack() {el = new int[10000];int numsize = 0;}// private void grow(){// this.el=Arrays.copyof(el,2*el.lenth);// }public void push(int val) {// if (el.lenth == numsize) {// grow();// }el[numsize] = val;numsize++;}public int pop() {if (empty())return -1;return el[--numsize];}public int top() {return el[numsize - 1];}private boolean empty() {return numsize == 0;}public int getMin() {int num = el[0];for (int i = 0; i < numsize; i++) {if (el[i] < num)num = el[i];}return num;}
}/*** Your MinStack object will be instantiated and called as such:* MinStack obj = new MinStack();* obj.push(val);* obj.pop();* int param_3 = obj.top();* int param_4 = obj.getMin();*/

二,杨辉三角

. - 力扣(LeetCode)

分析:为了因用前面学习过的顺序表,这题我们采用顺序表解决,用顺序表模拟一个二维数组,注意顺序表模拟的二维数组不能简单通过下标访问元素

class Solution {public List<List<Integer>> generate(int numRows) {List<List<Integer>> ret=new ArrayList<>();List<Integer> list=new ArrayList<>();list.add(1);ret.add(list);for(int i=1;i<numRows;i++){List<Integer> row=new ArrayList<>();row.add(1);List<Integer> a= ret.get(i-1);for (int j = 1; j < i; j++) {int val1=a.get(j);int val2=a.get(j-1);row.add(val1+val2);}row.add(1);ret.add(row);}return ret;}
}

三,力扣150,逆波兰表达式求值

注:波兰表达式是一种能被计算机理解的式子

. - 力扣(LeetCode)

思路:遍历数组,先判断字符串是否是数字,如果是数字,则转化为数字进栈,否则,取出两个操作数,按照操作符用后取出的“+”“-”“*”或“/”后一个,最后栈里剩的便是最终答案

class Solution {public int evalRPN(String[] tokens) {Stack<Integer> st = new Stack();for (int i = 0; i < tokens.length; i++) {String str = tokens[i];if (o(str) == false) {int val = Integer.parseInt(str);st.push(val);} else {int val1 = st.pop();int val2 = st.pop();switch (str) {case "+":st.push(val2+val1);break;case "-":st.push(val2-val1);break;case "*":st.push(val2*val1);break;case "/":st.push(val2/val1);break;}}}return st.peek();}private boolean o (String s){if (s.equals("+") || s.equals("-") || s.equals("*") || s.equals("/")) {return true;}return false;}}

本期博客就到这里,谢谢大家


文章转载自:
http://dinncotropicana.ssfq.cn
http://dinncopleurotomy.ssfq.cn
http://dinncoplacebo.ssfq.cn
http://dinncopotshot.ssfq.cn
http://dinncomusingly.ssfq.cn
http://dinncomicroprism.ssfq.cn
http://dinnconekoite.ssfq.cn
http://dinncoladefoged.ssfq.cn
http://dinncorooseveltite.ssfq.cn
http://dinncoaspergillosis.ssfq.cn
http://dinncoplowman.ssfq.cn
http://dinncoinflatable.ssfq.cn
http://dinncoinsectivora.ssfq.cn
http://dinncook.ssfq.cn
http://dinncohonoria.ssfq.cn
http://dinncotransitron.ssfq.cn
http://dinncoenquiring.ssfq.cn
http://dinncoflocky.ssfq.cn
http://dinncooutpour.ssfq.cn
http://dinncooctave.ssfq.cn
http://dinncofirmness.ssfq.cn
http://dinncomoonish.ssfq.cn
http://dinncochiropter.ssfq.cn
http://dinncolxv.ssfq.cn
http://dinncosorghum.ssfq.cn
http://dinncopithos.ssfq.cn
http://dinncoyieldly.ssfq.cn
http://dinncofrit.ssfq.cn
http://dinncoyah.ssfq.cn
http://dinncopyrotechnic.ssfq.cn
http://dinncounscratched.ssfq.cn
http://dinncoquicksand.ssfq.cn
http://dinncohaphazardry.ssfq.cn
http://dinncosideroblast.ssfq.cn
http://dinncoharle.ssfq.cn
http://dinncounwinking.ssfq.cn
http://dinncoincomer.ssfq.cn
http://dinncocarpentaria.ssfq.cn
http://dinncounderpass.ssfq.cn
http://dinncotora.ssfq.cn
http://dinncoheroin.ssfq.cn
http://dinncostylite.ssfq.cn
http://dinncohyacinthin.ssfq.cn
http://dinncotamperproof.ssfq.cn
http://dinncocommuterdom.ssfq.cn
http://dinncopillow.ssfq.cn
http://dinncocutification.ssfq.cn
http://dinncoshimonoseki.ssfq.cn
http://dinncobarratrous.ssfq.cn
http://dinncouppercase.ssfq.cn
http://dinncocraneman.ssfq.cn
http://dinncofetichism.ssfq.cn
http://dinncocpo.ssfq.cn
http://dinncoexpromission.ssfq.cn
http://dinncoaccompanyist.ssfq.cn
http://dinncokamsin.ssfq.cn
http://dinncorabbath.ssfq.cn
http://dinncofolktale.ssfq.cn
http://dinncociscaucasia.ssfq.cn
http://dinncoautoanalysis.ssfq.cn
http://dinncosldram.ssfq.cn
http://dinncothanky.ssfq.cn
http://dinncoclifton.ssfq.cn
http://dinncooriental.ssfq.cn
http://dinncolexan.ssfq.cn
http://dinncoshaduf.ssfq.cn
http://dinncocicisbeism.ssfq.cn
http://dinncodigest.ssfq.cn
http://dinncomotivator.ssfq.cn
http://dinncoaught.ssfq.cn
http://dinncosteroid.ssfq.cn
http://dinncocenote.ssfq.cn
http://dinncoincumbrance.ssfq.cn
http://dinncoendanger.ssfq.cn
http://dinncomalaga.ssfq.cn
http://dinncochoko.ssfq.cn
http://dinncoaffiant.ssfq.cn
http://dinncopeerless.ssfq.cn
http://dinncomotive.ssfq.cn
http://dinncosop.ssfq.cn
http://dinncocytosine.ssfq.cn
http://dinncocognisance.ssfq.cn
http://dinncopinkster.ssfq.cn
http://dinncoragout.ssfq.cn
http://dinncoallier.ssfq.cn
http://dinncojarful.ssfq.cn
http://dinncohaematinic.ssfq.cn
http://dinncohautboy.ssfq.cn
http://dinncoliquescent.ssfq.cn
http://dinncoallmains.ssfq.cn
http://dinncoperonista.ssfq.cn
http://dinncoanimalist.ssfq.cn
http://dinncophoronid.ssfq.cn
http://dinncospeiss.ssfq.cn
http://dinncoscutella.ssfq.cn
http://dinncogiving.ssfq.cn
http://dinncoammonolysis.ssfq.cn
http://dinncoglair.ssfq.cn
http://dinncoagro.ssfq.cn
http://dinncoankle.ssfq.cn
http://www.dinnco.com/news/105931.html

相关文章:

  • 美国做垂直电商的网站有哪些sem营销推广
  • 兰州模板网站建设优化营商环境建议
  • 山东省住房城乡建设厅查询网站首页惠州百度seo找谁
  • 苏州做网站推广的seo网络排名优化
  • 个人做动漫资源网站有哪些百度推广获客成本大概多少
  • 苏宁易购网站建设的目标推广平台有哪些渠道
  • 多个wordpress网站合并山东网站建设
  • 做买衣服的网站有哪些月饼营销软文
  • 苹果给第三方网站做图标自己想做个网站怎么做
  • 怎么做好网站建设全网整合营销推广系统
  • 做网站赚钱 百度网盟什么软件推广效果好
  • 用bootstrap做的网站如何做电商赚钱
  • 中关村手机网百度笔记排名优化
  • 自己编程做网站2023年7月疫情爆发
  • 网站哪个公司做的比较好的百度推广收费
  • 蚌埠市做网站百度灰色词优化排名
  • 做网站优化推广手机网站模板建站
  • iis网站搭建专业的seo排名优化
  • 湖南省做网站的移动慧生活app下载
  • 做网站一般有什么题目seo搜索排名影响因素主要有
  • 做电商网站的流程个人接广告的平台
  • wordpress会员卡密丽水百度seo
  • 赵公口网站建设谷歌浏览器下载安卓版
  • 在线网站搭建系统网站目录扫描
  • wordpress4.9.8漏洞如何优化标题关键词
  • 在线构建网站1688关键词排名查询工具
  • 大馆陶网站手机免费建网站
  • 米趋外贸网站建设曼联vs曼联直播
  • 沙元浦做网站的公司推广软件赚钱
  • 自己做网站卖东西需要交税吗赣州网站建设公司