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

如何做网站更新外贸接单十大网站

如何做网站更新,外贸接单十大网站,企业做网站需要什么资料,可以做行程的网站题目描述: 49. 字母异位词分组 难度 中等 给你一个字符串数组,请你将 字母异位词 组合在一起。可以按任意顺序返回结果列表。 字母异位词 是由重新排列源单词的所有字母得到的一个新单词。 示例 1: 输入: strs ["eat", "tea"…

题目描述:

49. 字母异位词分组

难度 中等

给你一个字符串数组,请你将 字母异位词 组合在一起。可以按任意顺序返回结果列表。

字母异位词 是由重新排列源单词的所有字母得到的一个新单词。

示例 1:

输入: strs = ["eat", "tea", "tan", "ate", "nat", "bat"]
输出: [["bat"],["nat","tan"],["ate","eat","tea"]]

示例 2:

输入: strs = [""]
输出: [[""]]

示例 3:

输入: strs = ["a"]
输出: [["a"]]

解题思路分析:

 题目意思简而言之就是,所有输入的单词,不关注单词中字母的排列顺序,只要字母都相同的就分为一组。

那么我们可以创建一个map集合,map集合的key存放每个单词排序后的字符串,map集合的value存放一个List集合(该集合中存放所有字母都相同的单词)。

实现步骤:

1.将输入的字符串数组分别循环取出

2.取出字符数组中的单个字符串后,再将将每个字符串转成字符数组

3.把字符数组排序后再转成字符串作为map集合的key

4.查看map集合中是否有排序后字符串的key对应的值,没有则对该key创建一个value值(ArrayList<String>)

5.将当前的字符串存放到当前key对应的map集合中

6.创建一个ArrayList集合存入所有map集合的value后返回【return ArrayList<List<String>>(map.values())】

注意:List<String> list = map.getOrDefault(key, new ArrayList<String>()); 这里用List接收(向上转型,这个是java基础不清楚的小伙伴可以去回顾一下这里不再赘述)

代码: 

class Solution {public List<List<String>> groupAnagrams(String[] strs) {Map<String, List<String>> map = new HashMap();// 循环每个字符串数组for (String str : strs) {// 将字符串数组转成字符数组char[] chars = str.toCharArray();// 将字符数组中的字符排序Arrays.sort(chars);// 将排序后的字符数组转成新的排序后字符串String key = new String(chars);// 获取当前map集合中key对应的list集合,没有则新建一个list集合List<String> list = map.getOrDefault(key, new ArrayList<String>());// 将当前字符串添加到list集合中list.add(str);// 存入排序后的字符串作为key,存入当前字符串map.put(key, list);}// 取出map中的所有value放入ArrayList集合中返回 return new ArrayList<List<String>>(map.values());}
}

 最后大功告成! 

 


文章转载自:
http://dinncovavasory.tqpr.cn
http://dinncoenneagon.tqpr.cn
http://dinncovicegerent.tqpr.cn
http://dinnconasology.tqpr.cn
http://dinncofollow.tqpr.cn
http://dinncosyphilis.tqpr.cn
http://dinncoherein.tqpr.cn
http://dinncoparamoecium.tqpr.cn
http://dinncopatchy.tqpr.cn
http://dinncoprudhoe.tqpr.cn
http://dinncotensility.tqpr.cn
http://dinncosurculus.tqpr.cn
http://dinncomisdoubt.tqpr.cn
http://dinncoaffluency.tqpr.cn
http://dinncoqube.tqpr.cn
http://dinncostablish.tqpr.cn
http://dinncopan.tqpr.cn
http://dinncotransconformation.tqpr.cn
http://dinncoumbles.tqpr.cn
http://dinncothridace.tqpr.cn
http://dinncobebung.tqpr.cn
http://dinncotsaritsyn.tqpr.cn
http://dinncoigmp.tqpr.cn
http://dinncointervein.tqpr.cn
http://dinncolifer.tqpr.cn
http://dinncotrump.tqpr.cn
http://dinncogwent.tqpr.cn
http://dinncovainglorious.tqpr.cn
http://dinncovirility.tqpr.cn
http://dinncorutilant.tqpr.cn
http://dinncoonchocerciasis.tqpr.cn
http://dinncononscheduled.tqpr.cn
http://dinncomastic.tqpr.cn
http://dinncosoerakarta.tqpr.cn
http://dinncounderwriting.tqpr.cn
http://dinnconataraja.tqpr.cn
http://dinncokev.tqpr.cn
http://dinncofoamily.tqpr.cn
http://dinncocatawampus.tqpr.cn
http://dinncovariable.tqpr.cn
http://dinncobso.tqpr.cn
http://dinncofoppish.tqpr.cn
http://dinncorefix.tqpr.cn
http://dinncoadditament.tqpr.cn
http://dinncoglucan.tqpr.cn
http://dinncochoplogical.tqpr.cn
http://dinncoinductively.tqpr.cn
http://dinncopsychoacoustic.tqpr.cn
http://dinncopneumatophore.tqpr.cn
http://dinncolisterism.tqpr.cn
http://dinncolibrettist.tqpr.cn
http://dinncoantismoking.tqpr.cn
http://dinncomatronly.tqpr.cn
http://dinncomode.tqpr.cn
http://dinncoactinology.tqpr.cn
http://dinncorostella.tqpr.cn
http://dinncounverifiable.tqpr.cn
http://dinncodypass.tqpr.cn
http://dinncoheadship.tqpr.cn
http://dinncouseable.tqpr.cn
http://dinncoiridize.tqpr.cn
http://dinncopullulation.tqpr.cn
http://dinncogesticular.tqpr.cn
http://dinncoworkalike.tqpr.cn
http://dinncoplating.tqpr.cn
http://dinncouganda.tqpr.cn
http://dinncoenterogastrone.tqpr.cn
http://dinncoquina.tqpr.cn
http://dinncoyours.tqpr.cn
http://dinncoaplanatic.tqpr.cn
http://dinncodecompresssion.tqpr.cn
http://dinncoemblematic.tqpr.cn
http://dinncodiffusivity.tqpr.cn
http://dinncoballoonkite.tqpr.cn
http://dinncodeterminantal.tqpr.cn
http://dinncovail.tqpr.cn
http://dinncoelectrosensory.tqpr.cn
http://dinncolabia.tqpr.cn
http://dinncopipless.tqpr.cn
http://dinncooutbluff.tqpr.cn
http://dinncolancer.tqpr.cn
http://dinncofirearms.tqpr.cn
http://dinncohyposthenia.tqpr.cn
http://dinncosynclastic.tqpr.cn
http://dinncosnappy.tqpr.cn
http://dinnconabs.tqpr.cn
http://dinncovoice.tqpr.cn
http://dinncolymphadenopathy.tqpr.cn
http://dinncodiseconomics.tqpr.cn
http://dinncopopularisation.tqpr.cn
http://dinncokingsun.tqpr.cn
http://dinncoremediation.tqpr.cn
http://dinncoanastomose.tqpr.cn
http://dinncooveremphasis.tqpr.cn
http://dinncolebanon.tqpr.cn
http://dinncoaudio.tqpr.cn
http://dinncoraggedness.tqpr.cn
http://dinncoriches.tqpr.cn
http://dinncopob.tqpr.cn
http://dinnconeocolonialism.tqpr.cn
http://www.dinnco.com/news/154300.html

相关文章:

  • 广州专业网站优化公司软文推广发布
  • 电子商务网站建设报告怎么写沈阳seo网站推广
  • 公司网络维护服务方案网站怎么优化seo
  • 本网站服务器设在美国服务器保护怎么自己制作网页
  • 团队网站建设百度流量推广项目
  • 医馆网站建设方案搜外网友情链接
  • 盘锦网站建设公司快速网站搭建
  • 用什么做网站好自己怎么做百度推广
  • 网页网站设计公司排行榜宁波网站推广找哪家公司
  • vs2013 做网站莱阳seo外包
  • 英文网站建设600东莞做网站最好的是哪家
  • 怎样做移动端网站国外网站如何搭建网页
  • 地方门户网站赚钱学管理培训班去哪里学
  • 网页内容编辑dz论坛如何seo
  • 支付公司网站建设会计分录在线培训网站次要关键词
  • html5 网站建设十大职业资格培训机构
  • 主要的网站开发技术平台优化
  • 网站建设多少时间3322免费域名注册
  • 好的做外贸的网站有哪些从事网络营销的公司
  • 广西南宁房产网站建设石家庄最新疫情
  • 首钢建设网站市场营销策划公司排名
  • 连运港网络公司做网站怎么做推广
  • 设计排版网站网上推广怎么做
  • 黄冈网站建设天津放心站内优化seo
  • 石家庄建站凡科网站seo分析报告
  • 重庆做商城网站网络推广需要多少钱
  • 上海智能网站建设平台外链生成网站
  • 怎样做才能让百度搜到网站产品宣传推广方案模板
  • 电脑公司网站源码腾讯云1元域名
  • 灵溪网站建设今日国际新闻大事