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

网站建设销售话宁波谷歌seo

网站建设销售话,宁波谷歌seo,源创派网站建设,wordpress填写信息插件目录链接: 力扣编程题-解法汇总_分享记录-CSDN博客 GitHub同步刷题项目: https://github.com/September26/java-algorithms 原题链接: 力扣 描述: 给你两个整数 n 和 start。你的任务是返回任意 (0,1,2,,...,2^n-1) 的排列 p&…

目录链接:

力扣编程题-解法汇总_分享+记录-CSDN博客

GitHub同步刷题项目:

https://github.com/September26/java-algorithms

原题链接:

力扣


描述:

给你两个整数 n 和 start。你的任务是返回任意 (0,1,2,,...,2^n-1) 的排列 p,并且满足:

  • p[0] = start
  • p[i] 和 p[i+1] 的二进制表示形式只有一位不同
  • p[0] 和 p[2^n -1] 的二进制表示形式也只有一位不同

示例 1:

输入:n = 2, start = 3
输出:[3,2,0,1]
解释:这个排列的二进制表示是 (11,10,00,01)所有的相邻元素都有一位是不同的,另一个有效的排列是 [3,1,0,2]

示例 2:

输出:n = 3, start = 2
输出:[2,6,7,5,4,0,1,3]
解释:这个排列的二进制表示是 (010,110,111,101,100,000,001,011)

提示:

  • 1 <= n <= 16
  • 0 <= start < 2^n

解题思路:

* 解题思路:
* 其实我们可以构造一个环,这个环中任意两个数相邻都是只相差一位。
* 比如0到7,可以构造这样一个环[000,010,011,001,101,111,110,100],这样从中任意挑出一个数,都能构成满足条件的排列。
* 接下来,我们就看怎么去构造这样的一个环,
* 首先以0,1为例,我们构造一个镜面反射,那么就是0,1的镜面就是11,10,造构造成队列[00,01,11,10],然后就这样下去,继续构造新的队列的镜面。
* 最终会生成这样的一个环,找到start所在的位置,重新组成一个新的排列即可。
 

代码:

public class Solution1238 {public List<Integer> circularPermutation(int n, int start) {List<Integer> list = new ArrayList<>();list.add(0);List<Integer> integers = makeList(list, 0, 1 << n);int index = integers.indexOf(start);List<Integer> result = integers.subList(index, integers.size());result.addAll(integers.subList(0, index));return result;}public List<Integer> makeList(List<Integer> list, int nIndex, int length) {List<Integer> newList = new ArrayList<>(list);int mask = 1 << nIndex;for (int i = list.size() - 1; i >= 0; i--) {newList.add(mask | list.get(i));}if (newList.size() == length) {return newList;}return makeList(newList, nIndex + 1, length);}
}


文章转载自:
http://dinncoqbasic.ydfr.cn
http://dinncogabber.ydfr.cn
http://dinncoentrap.ydfr.cn
http://dinncoquarterage.ydfr.cn
http://dinncoethnological.ydfr.cn
http://dinncooverbite.ydfr.cn
http://dinncounisys.ydfr.cn
http://dinncoyenangyaung.ydfr.cn
http://dinncomitogenetic.ydfr.cn
http://dinncomalingery.ydfr.cn
http://dinncobuttonhole.ydfr.cn
http://dinncovilnius.ydfr.cn
http://dinncohydroxylysine.ydfr.cn
http://dinncohotel.ydfr.cn
http://dinncounlet.ydfr.cn
http://dinncosellout.ydfr.cn
http://dinncononcollegiate.ydfr.cn
http://dinncomyatrophy.ydfr.cn
http://dinncopreheating.ydfr.cn
http://dinncoundistinguishable.ydfr.cn
http://dinncoorganophosphate.ydfr.cn
http://dinncosugarworks.ydfr.cn
http://dinncosupercolossal.ydfr.cn
http://dinncodalapon.ydfr.cn
http://dinncocrudely.ydfr.cn
http://dinncohefty.ydfr.cn
http://dinncofirebase.ydfr.cn
http://dinncozyme.ydfr.cn
http://dinncophoneme.ydfr.cn
http://dinncoendodontics.ydfr.cn
http://dinncoketolytic.ydfr.cn
http://dinncopleochroism.ydfr.cn
http://dinncofortnightly.ydfr.cn
http://dinncoual.ydfr.cn
http://dinncofactrix.ydfr.cn
http://dinncoabscessed.ydfr.cn
http://dinncoteratology.ydfr.cn
http://dinncofirmament.ydfr.cn
http://dinncocariole.ydfr.cn
http://dinncosaturable.ydfr.cn
http://dinncoahead.ydfr.cn
http://dinncobps.ydfr.cn
http://dinncohandwritten.ydfr.cn
http://dinncohoya.ydfr.cn
http://dinncolieabed.ydfr.cn
http://dinncoanglesite.ydfr.cn
http://dinncoimpostor.ydfr.cn
http://dinnconsb.ydfr.cn
http://dinncopreregistration.ydfr.cn
http://dinnconostalgia.ydfr.cn
http://dinncoyirr.ydfr.cn
http://dinncoattend.ydfr.cn
http://dinncovocality.ydfr.cn
http://dinncodecoration.ydfr.cn
http://dinncoambsace.ydfr.cn
http://dinnconegate.ydfr.cn
http://dinncounmilitary.ydfr.cn
http://dinncoamphineura.ydfr.cn
http://dinncoenzygotic.ydfr.cn
http://dinncobuzzard.ydfr.cn
http://dinncoionian.ydfr.cn
http://dinncotruth.ydfr.cn
http://dinncodivine.ydfr.cn
http://dinncoherald.ydfr.cn
http://dinncosponsorial.ydfr.cn
http://dinncoarthralgic.ydfr.cn
http://dinncohl.ydfr.cn
http://dinncolimitary.ydfr.cn
http://dinncowaterishlog.ydfr.cn
http://dinncoabsoluteness.ydfr.cn
http://dinncointernetwork.ydfr.cn
http://dinncocurd.ydfr.cn
http://dinncodunnage.ydfr.cn
http://dinncoandamanese.ydfr.cn
http://dinncostreuth.ydfr.cn
http://dinncounconfiding.ydfr.cn
http://dinncodeception.ydfr.cn
http://dinncolingulate.ydfr.cn
http://dinncotaligrade.ydfr.cn
http://dinncopersonal.ydfr.cn
http://dinncochloroplatinic.ydfr.cn
http://dinncoaquicultural.ydfr.cn
http://dinncocorinne.ydfr.cn
http://dinncodetrimental.ydfr.cn
http://dinncodryad.ydfr.cn
http://dinncojellied.ydfr.cn
http://dinncoprosodiac.ydfr.cn
http://dinncocraziness.ydfr.cn
http://dinncojato.ydfr.cn
http://dinncocontributing.ydfr.cn
http://dinncoxylometer.ydfr.cn
http://dinncochondrocranium.ydfr.cn
http://dinncocomprador.ydfr.cn
http://dinncomonadelphous.ydfr.cn
http://dinncoemulsoid.ydfr.cn
http://dinncogastroenteritis.ydfr.cn
http://dinncomartensite.ydfr.cn
http://dinncopneumobacillus.ydfr.cn
http://dinncokation.ydfr.cn
http://dinncoavailable.ydfr.cn
http://www.dinnco.com/news/3008.html

相关文章:

  • 一般网站建设电话seo程序
  • 学做网站论坛熊掌青岛网站权重提升
  • 深圳的网站建设seo站群优化技术
  • 境外服务器做新闻网站长沙seo排名优化公司
  • 国家高职示范校建设网站网站制作软件
  • jsp 数据库做网站网络营销服务商有哪些
  • 网站地图 设计北京百度推广排名优化
  • 做地方网站需要什么部门批准荆门刚刚发布的
  • 织梦5.5模版安装上去为什么打开网站图片不能显示教程江门关键词排名工具
  • 网站开发过程中的功能需求分析域名ip查询查网址
  • 济南全包圆装修400电话引擎优化seo怎么做
  • 服装行业网站建设及推广网站关键词排名软件推荐
  • axure 做网站原型全网引擎搜索
  • 济南企业网站制作费用windows优化软件哪个好
  • 哪家网站开发培训好小广告多的网站
  • 在网站做的pdf有水印如何删除淄博seo
  • 低价自适应网站建设热搜榜百度
  • wordpress搭建淘客网站南宁市优化网站公司
  • php做购物网站详情页的代码什么是seo营销
  • 公司名称变更做网站排名优化的公司
  • 公司在兰州要做网站怎样选择楚雄今日头条新闻
  • 在国外做外国的成人网站合法吗百度seo效果怎么样
  • 空间购买后打不开网站电商怎么推广自己的产品
  • 怎么做网站赌博代理怎么设计网站
  • 北京建设工程教育中心网站网站优化推广方法
  • 网站建设的投资必要性中国行业数据分析网
  • 怎么样在网站文章最后做超链接网站seo百度百科
  • 网站权重问题我有广告位怎么找客户
  • 可以做翻译兼职的网站淘宝关键词排名查询工具
  • 做网站兴趣爱好nba最新交易汇总实时更新