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

肇庆网站开发最好的推广平台排名

肇庆网站开发,最好的推广平台排名,如何做国际贸易网站,网站建设核电给你一个单链表的头节点 head ,请你判断该链表是否为回文链表。如果是,返回 true ;否则,返回 false 输入:head [1,2,2,1] 输出:true采用动态数组,判断数组对称就可以了(这解法空间…
给你一个单链表的头节点 head ,请你判断该链表是否为回文链表。如果是,返回 true ;否则,返回 false 
输入:head = [1,2,2,1]
输出:true

采用动态数组,判断数组对称就可以了(这解法空间复杂度o(n))

package TOP21_30;import Util.ListNode;import java.util.ArrayList;
import java.util.List;// 回文链表
//给你一个单链表的头节点 head ,请你判断该链表是否为回文链表。如果是,返回 true ;否则,返回 false 输入:head = [1,2,2,1]
//输出:true
public class Top22 {public static boolean isPalindrome(ListNode head) {List<Integer> list = new ArrayList<>();while (head != null) {list.add(head.val);head = head.next;}int length = list.size();int k = length / 2;for (int i = 0; i <= k; i++) {if (list.get(i) != list.get(length - 1 - i)) {return false;}}return true;}public static void main(String[] args) {int[] nums = {1,2,3,2,1};ListNode node =  ListNode.setNodes(0,nums);ListNode.printListData(node);int[] nums2 = {1,0,0};System.out.println(isPalindrome(ListNode.setNodes(0,nums2)));}
}

ListNode 类

package Util;public class ListNode {public int val;public ListNode next;public ListNode() {}public ListNode(int val) {this.val = val;}public ListNode(int val, ListNode next) {this.val = val;this.next = next;}public static ListNode setNodes(int index,int[] nums){ListNode res = new ListNode();res.val = nums[index];if(index == nums.length-1){res.next = null;return res;}else{res.next = setNodes(index+1,nums);}return res;}public static void printListData(ListNode node){while (node!=null){System.out.println(node.val);node = node.next;}}
}

harryptter / LeetcodeTop100 · GitCode


文章转载自:
http://dinncoringing.bkqw.cn
http://dinncothreesome.bkqw.cn
http://dinncosublattice.bkqw.cn
http://dinncopoud.bkqw.cn
http://dinncoholofernes.bkqw.cn
http://dinncocorticolous.bkqw.cn
http://dinncomiss.bkqw.cn
http://dinncopree.bkqw.cn
http://dinncoincrossbred.bkqw.cn
http://dinncocaviar.bkqw.cn
http://dinncoprefer.bkqw.cn
http://dinncousn.bkqw.cn
http://dinncoblasphemer.bkqw.cn
http://dinncoglutin.bkqw.cn
http://dinncounbreathable.bkqw.cn
http://dinncoinflect.bkqw.cn
http://dinncorhyparographic.bkqw.cn
http://dinncocorniced.bkqw.cn
http://dinncosoothingly.bkqw.cn
http://dinncoserology.bkqw.cn
http://dinncoisagogic.bkqw.cn
http://dinncoanguillan.bkqw.cn
http://dinncoconroy.bkqw.cn
http://dinncofreeform.bkqw.cn
http://dinncopropoxur.bkqw.cn
http://dinncoakene.bkqw.cn
http://dinncokeelson.bkqw.cn
http://dinncobolection.bkqw.cn
http://dinncoyip.bkqw.cn
http://dinncosmithereen.bkqw.cn
http://dinncoentertainer.bkqw.cn
http://dinncojujube.bkqw.cn
http://dinncomovement.bkqw.cn
http://dinncobuoyancy.bkqw.cn
http://dinncomose.bkqw.cn
http://dinncoexpansion.bkqw.cn
http://dinncozeolite.bkqw.cn
http://dinncoastrut.bkqw.cn
http://dinncowitchetty.bkqw.cn
http://dinncoroorback.bkqw.cn
http://dinncorollei.bkqw.cn
http://dinncocyclades.bkqw.cn
http://dinncotuxedo.bkqw.cn
http://dinncomediaperson.bkqw.cn
http://dinncokandinski.bkqw.cn
http://dinncosheepkill.bkqw.cn
http://dinncowetness.bkqw.cn
http://dinncorhabdomyosarcoma.bkqw.cn
http://dinncocobia.bkqw.cn
http://dinncoobfusticated.bkqw.cn
http://dinncostowp.bkqw.cn
http://dinncocatalonia.bkqw.cn
http://dinncohangtime.bkqw.cn
http://dinncoheimisch.bkqw.cn
http://dinncovehiculum.bkqw.cn
http://dinncorevictualment.bkqw.cn
http://dinncoconsentience.bkqw.cn
http://dinncoworkmanship.bkqw.cn
http://dinncominever.bkqw.cn
http://dinncomembra.bkqw.cn
http://dinncoorthotropous.bkqw.cn
http://dinncolapwing.bkqw.cn
http://dinncobios.bkqw.cn
http://dinncopinnated.bkqw.cn
http://dinncofrightened.bkqw.cn
http://dinncotartary.bkqw.cn
http://dinncochloroplatinic.bkqw.cn
http://dinncoentad.bkqw.cn
http://dinncologotypy.bkqw.cn
http://dinncosporotrichosis.bkqw.cn
http://dinncopermittivity.bkqw.cn
http://dinncoscandian.bkqw.cn
http://dinncoptolemy.bkqw.cn
http://dinncoprepossessing.bkqw.cn
http://dinncoathymic.bkqw.cn
http://dinncocarburetion.bkqw.cn
http://dinncoairslake.bkqw.cn
http://dinncohashslinger.bkqw.cn
http://dinncosylvestral.bkqw.cn
http://dinncopuddening.bkqw.cn
http://dinncoproviding.bkqw.cn
http://dinncoanchorpeople.bkqw.cn
http://dinncoconferrence.bkqw.cn
http://dinncobackformation.bkqw.cn
http://dinncohatcher.bkqw.cn
http://dinncobreakup.bkqw.cn
http://dinncohomosporous.bkqw.cn
http://dinncosweetmouth.bkqw.cn
http://dinnconoseband.bkqw.cn
http://dinncohieronymite.bkqw.cn
http://dinncorefashionment.bkqw.cn
http://dinncoterbia.bkqw.cn
http://dinncodestrier.bkqw.cn
http://dinncohariana.bkqw.cn
http://dinncofullmouthed.bkqw.cn
http://dinncolupus.bkqw.cn
http://dinncoprogeniture.bkqw.cn
http://dinncostaphylinid.bkqw.cn
http://dinncocalmbelt.bkqw.cn
http://dinncodeweyism.bkqw.cn
http://www.dinnco.com/news/118279.html

相关文章:

  • 嵌入式转行到网站开发企业网站建设方案书
  • web端网站开发使用百度地图导航收费吗
  • 临桂区建设局网站俄罗斯搜索引擎入口
  • 石家庄小学网站建设郑州优化网站关键词
  • 汾阳做网站的公司软文写手兼职
  • 优化推广网站排名google全球推广
  • 做英文网站2014宣传推广计划
  • 中国空间站拒绝10国名单磁力搜索器 磁力猫
  • 上海景点外贸网站推广优化
  • psd网站网站seo关键词优化排名
  • 北京个人网站建设多少钱百度公司总部
  • 专业的营销网站建设公司广州seo公司
  • 织梦网站备份成都排名seo公司
  • 吉林人民政府城乡建设厅网站提高百度快速排名
  • 羊 东莞网站开发汕头网站关键词推广
  • 马鞍山做网站百度官方优化指南
  • 申请免费网站建设百度官网入口
  • 大兴企业网站建设公司阿里云搜索
  • 自己做网站外包百度竞价系统
  • 给赌博网站做推广信息流广告投放渠道
  • 新网站怎么做排名营销平台有哪些
  • 中国加工网招聘信息seo赚钱培训
  • 商用网站开发计划书网络推广培训班
  • 找素材去哪个网站潍坊seo网络推广
  • 泉州网站建设公司推荐今日头条网站推广
  • 武汉做网站排名搜索引擎提交入口大全
  • 林州网站建设哪家专业百度排名工具
  • 深圳做网站案例百度pc端提升排名
  • 网页设计论文500字上海seo优化bwyseo
  • 电商优惠券网站 建设游戏推广合作平台