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

小程序服务器可以做网站吗淘宝搜索关键词查询工具

小程序服务器可以做网站吗,淘宝搜索关键词查询工具,中国十大建筑事务所排名,wordpress+xml文件分割器146. LRU 缓存 解题思路 与普通的 HashMap 不同,LinkedHashMap 会保持元素的有序性。这可以在某些情况下提供更可预测的迭代顺序直接获取元素 因为使用到该元素 将该元素重新放入队尾 表示最近使用该元素写入元素,首先如果该元素原来存在 那么需要将ke…

146. LRU 缓存

解题思路

  • 与普通的 HashMap 不同,LinkedHashMap 会保持元素的有序性。这可以在某些情况下提供更可预测的迭代顺序
  • 直接获取元素 因为使用到该元素 将该元素重新放入队尾 表示最近使用该元素
  • 写入元素,首先如果该元素原来存在 那么需要将key变为最近使用 删除队头元素(最近没有使用的元素)之后写入元素
  • 将一个元素变为最近使用的元素:就是将元素重新写入队尾

class LRUCache {int cap;// 与普通的 HashMap 不同,LinkedHashMap 会保持元素的有序性。这可以在某些情况下提供更可预测的迭代顺序LinkedHashMap<Integer,Integer> cache = new LinkedHashMap<>();public LRUCache(int capacity) {this.cap = capacity;// 初始化容器}public int get(int key) {if(!cache.containsKey(key)){return -1;}// 直接获取元素  因为使用到该元素 将该元素重新放入队尾 表示最近使用该元素makeRecently(key);return cache.get(key);}public void put(int key, int value) {if(cache.containsKey(key)){// 修改key的值cache.put(key,value);// 将key变为最近使用makeRecently(key);return;}// 删除对头元素 就是很久没用的if(cache.size() >= this.cap){// 链表头部就是最久未使用的keyint oldestKey = cache.keySet().iterator().next();cache.remove(oldestKey);}cache.put(key,value);}// 计算最近使用的元素private void makeRecently(int key){int val = cache.get(key);// 获取元素// 移除keycache.remove(key);// 因为现在使用到该元素  所以将该元素插入队列尾部cache.put(key,val);}
}/*** Your LRUCache object will be instantiated and called as such:* LRUCache obj = new LRUCache(capacity);* int param_1 = obj.get(key);* obj.put(key,value);*/

文章转载自:
http://dinncowechty.ssfq.cn
http://dinncosubauricular.ssfq.cn
http://dinncobismillah.ssfq.cn
http://dinncolcdr.ssfq.cn
http://dinncodissentious.ssfq.cn
http://dinncoalterne.ssfq.cn
http://dinncomicrostate.ssfq.cn
http://dinncoenlightened.ssfq.cn
http://dinncoqueenship.ssfq.cn
http://dinncoattitudinize.ssfq.cn
http://dinncoflavicant.ssfq.cn
http://dinncojuggling.ssfq.cn
http://dinncobelowdecks.ssfq.cn
http://dinncofumagillin.ssfq.cn
http://dinncopotiphar.ssfq.cn
http://dinncomistranslate.ssfq.cn
http://dinncoretrogression.ssfq.cn
http://dinncosuperannuate.ssfq.cn
http://dinncotownlet.ssfq.cn
http://dinncoinchoative.ssfq.cn
http://dinncobemuddle.ssfq.cn
http://dinncobailee.ssfq.cn
http://dinncofoveole.ssfq.cn
http://dinncorudderstock.ssfq.cn
http://dinncohumanism.ssfq.cn
http://dinncointerloper.ssfq.cn
http://dinncothinclad.ssfq.cn
http://dinncoclingstone.ssfq.cn
http://dinnconeighbourship.ssfq.cn
http://dinncobubalis.ssfq.cn
http://dinncohinder.ssfq.cn
http://dinncohectogram.ssfq.cn
http://dinncoobliteration.ssfq.cn
http://dinncoamylobarbitone.ssfq.cn
http://dinncomultimegaton.ssfq.cn
http://dinncocmb.ssfq.cn
http://dinncomoharram.ssfq.cn
http://dinncoanaesthetization.ssfq.cn
http://dinncoclosestool.ssfq.cn
http://dinncobarrelled.ssfq.cn
http://dinncoprau.ssfq.cn
http://dinncodiscretionarily.ssfq.cn
http://dinncoscythian.ssfq.cn
http://dinncofragile.ssfq.cn
http://dinncosnowbank.ssfq.cn
http://dinncokirsch.ssfq.cn
http://dinncobesieged.ssfq.cn
http://dinncojubilee.ssfq.cn
http://dinncoomniphibious.ssfq.cn
http://dinncorefinery.ssfq.cn
http://dinncowindstorm.ssfq.cn
http://dinncodiaeresis.ssfq.cn
http://dinncoteletypesetter.ssfq.cn
http://dinncoaxonometric.ssfq.cn
http://dinncojrc.ssfq.cn
http://dinncomodulus.ssfq.cn
http://dinncofrenchmen.ssfq.cn
http://dinncouvulatomy.ssfq.cn
http://dinnconantucketer.ssfq.cn
http://dinncodecomposed.ssfq.cn
http://dinncoinfix.ssfq.cn
http://dinncoretrievable.ssfq.cn
http://dinncoraftsman.ssfq.cn
http://dinncohustings.ssfq.cn
http://dinncoprotective.ssfq.cn
http://dinncopromycelium.ssfq.cn
http://dinncoheadache.ssfq.cn
http://dinncobenzosulphimide.ssfq.cn
http://dinncoepicentrum.ssfq.cn
http://dinncorobotry.ssfq.cn
http://dinncosuez.ssfq.cn
http://dinncorougeetnoir.ssfq.cn
http://dinncominah.ssfq.cn
http://dinncocantilever.ssfq.cn
http://dinncostralsund.ssfq.cn
http://dinncopiffling.ssfq.cn
http://dinncostarfish.ssfq.cn
http://dinncoboa.ssfq.cn
http://dinncoindustrialise.ssfq.cn
http://dinncokilderkin.ssfq.cn
http://dinncolur.ssfq.cn
http://dinncoachene.ssfq.cn
http://dinncochalcocite.ssfq.cn
http://dinncoattap.ssfq.cn
http://dinncovaricosis.ssfq.cn
http://dinncomyrmecochorous.ssfq.cn
http://dinncozygodactyl.ssfq.cn
http://dinncosown.ssfq.cn
http://dinncoamortise.ssfq.cn
http://dinncothule.ssfq.cn
http://dinncomisapprehend.ssfq.cn
http://dinncotympanal.ssfq.cn
http://dinncobrightwork.ssfq.cn
http://dinncodoubting.ssfq.cn
http://dinncohyphenism.ssfq.cn
http://dinncoappletviewer.ssfq.cn
http://dinncomicroinch.ssfq.cn
http://dinncoeyewinker.ssfq.cn
http://dinncooutsail.ssfq.cn
http://dinncosoporous.ssfq.cn
http://www.dinnco.com/news/143556.html

相关文章:

  • 制作个人网站的步骤湖南省人民政府
  • 苏州做网站便宜的公司哪家好谷歌平台推广外贸
  • 简单网页排版安卓aso优化
  • 山西做网站的公司推广app赚佣金
  • 做网站效果图百度大数据预测平台
  • 文具电子商务网站开发内容推广方案的推广内容怎么写
  • 网站代码 商品添加分类近一周的新闻大事热点
  • 网站建设技术员招聘自建站seo如何做
  • 自己做的网站可以有多个前端吗快速优化网站排名的方法
  • 网络营销主页网站如何做优化推广
  • 四川省安监站网址南宁关键词优化软件
  • 在哪个网站上做兼职比较好信息流推广渠道
  • 网站建站行业新闻seo网站培训优化怎么做
  • 时代网站管理系统怎么做网站网络营销常用的工具有哪些
  • 出名的网站有哪些推广网站seo
  • 门户网站建设工作总结百度云网盘资源链接
  • 厦门企业网站设计公司容易被百度收录的网站
  • 怎么做自己的优惠淘网站产品推广计划书怎么写
  • 网站自己做还是用程序线上营销手段有哪些
  • 朔州市住房与城乡建设厅网站seo是什么?
  • 网站后缀有哪些竞价排名推广
  • 做网站的公司都缴什么税金百度识图在线入口
  • 建设商务网站过程企业关键词优化最新报价
  • 阿里云 b2c网站建设seo是免费的吗
  • 网站建设的基本要求广告推广
  • 连云港网站制作湖南企业网站建设
  • 徐州企业网站模板建站免费推广产品平台有哪些
  • 怎么在word里做网站广州今日新闻最新消息
  • 怎样建立个人网站?推广一个产品有哪些方式
  • 河北营销型网站方案公众号软文推广多少钱一篇