LetCode
2313 단어 알고리즘과 데이터 구조
하나의 체인 테이블이 회문 체인 테이블인지 아닌지를 판단하십시오.
예1:
입력: 1->2 출력:false 예2:
입력: 1->2->2->1 출력:true
코드 1
//
int length = 0;
ListNode node = head;
if(null == head.next){
length = 1;
}else{
do{
length++;
}while(null != (node = node.next));
}
Stack stack = new Stack<>();
// ListNode
if(1 == length % 2){
//
for(int i = 0, j = length / 2; i < j; i++){
stack.push(head.val);
head = head.next;
}
head = head.next;
//
for(int i = length / 2 + 1, j = length; i < j; i++){
if(head.val != stack.pop()){
return false;
}
head = head.next;
}
// ListNode
}else{
//
for(int i = 0, j = length / 2; i < j; i++){
stack.push(head.val);
head = head.next;
}
//
for(int i = length / 2 + 1, j = length; i <= j; i++){
if(head.val != stack.pop()){
return false;
}
head = head.next;
}
}
return true;
}
코드 2
class Solution {
public boolean isPalindrome(ListNode head) {
if (head == null || head.next == null) return true; // true
ListNode fast = head;
ListNode slow = head;
ListNode temp = null;
while (fast != null){
/**
* 1.
* 2.
* 3.
*/
if (fast.next != null){ //
slow = slow.next;
fast = fast.next.next;
//
head.next = temp; //
temp = head;
head = slow;
} else { //
slow = slow.next;
//
head.next = temp; //
head = slow;
break;
}
}
while (temp != null){
if (temp.val != head.val) return false;
temp = temp.next;
head = head.next;
}
return true;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python3를 사용하여 빠른 배열 정렬2020년 새해 복 많이 받으세요.저는 ryuichi69라고 합니다.오늘도 알고리즘 연습의 성과, 연습을 설명하는 동시에 이 글을 썼다.솔직히 이해하기 쉽게 쓰느라 힘들었는데 설명하기 어려운 부분, 요건 누락 등이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.