回文链表
- 创建一个栈,将链表中所有数据存入栈中,再将栈中数据与链表中的所有数据进行比较。
- 利用单步指针和双步指针,当双步指针最后到链表尾的时候,将后半部分链表指向取反,再从链表头和链表尾同时开始对比数据大小,实现回文链表的判断。空间复杂度为O(1)。
public static class Node{
public int value ;
public Node next;
public Node(int data){
this.value = data;
}
}
public static boolean isPalinddrome1(Node head){
Stack<Node> stack = new Stack<Node>();
Node cur = head;
while(cur!=null){
stack.push(cur);
cur = cur.next;
}
while(head!= null){
if(head.value != stack.pop().value){
return false
}
head = head.next;
}
return true;
}
public static boolean isPalindrome2(Node node){
if(head == null ||head.next == null){
return true;
}
Node right = head.next;
Node cur = head;
while(cur.next!=null &&cur.next.next !=null){
right = right.next;
cur = cur.next.next;
}
Stack<Node> stack = new Stack<Node>();
while(right != null){
stack.push(right);
right = right.next;
}
while(!stack.isEmpty()){
if(head.value != stack.pop().value){
return false;
}
head = head.next;
}
return ture;
}
public static boolean isPalindrome3(Node head){
if(head == null|| head.next == null){
return ture;
}
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