日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

判断链表是否为回文结构

發(fā)布時(shí)間:2024/5/6 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 判断链表是否为回文结构 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

對(duì)于一個(gè)鏈表,請(qǐng)?jiān)O(shè)計(jì)一個(gè)時(shí)間復(fù)雜度為O(n),額外空間復(fù)雜度為O(1)的算法,判斷其是否為回文結(jié)構(gòu)。

Code

//coding=utf8 /***************************************************** @Author: Alex @Created Time : Tue 03 Sep 2019 07:36:51 AM CST @File Name: palindromeList.java @Blog: https://blog.csdn.net/weixin_43336281 ****************************************************/ public class palindromeList{ public static class Node{ public int value; public Node next; public Node(int data){ this.value = data; } } public static boolean isPalindrome(Node head){ if(head == null || head.next == null) return true; Node n1 = head; Node n2 = head; while(n2.next != null && n2.next.next != null){ n1 = n1.next; n2 = n2.next.next; } n2 = n1.next; n1.next = null; Node n3 = null; while(n2 != null){ n3 = n2.next; n2.next = n1; n1 = n2; n2 = n3; } n3 = n1; //n3 is last node n2 = head; boolean res = true; while(n1 != null && n2 != null){ if(n1.value != n2.value){ res = false; break; } n1 = n1.next; n2 = n2.next; } n1 = n3.next; n3.next = null; while(n1 != null){ n2 = n1.next; n1.next = n3; n3 = n1; n1 = n2; } return res; } }

總結(jié)

以上是生活随笔為你收集整理的判断链表是否为回文结构的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。