java 단일 체인 테이블에 고리가 있는지 확인하는 방법
만약에 고리가 존재하지 않는다면 반드시 h2가 먼저 NULL을 만나게 될 것이다. 만약에 고리가 존재한다면 h2와 h1은 반드시 만나게 될 것이다. 그리고 만나는 점은 고리 안에 있다. h2는 h1보다 지나가는 속도가 빠르고 시작하는 그 비고리의 체인 시계 부분에서 만나지 않을 것이다. 그래서 h1, h2가 모두 고리에 들어간 후에 h2가 이동할 때마다 h2와 h1 사이의 전진 방향에서의 차이를 1로 줄일 것이다. 마지막으로 h1과 h2의 차이를 0으로 줄일 수 있다. 즉, 만나게 된다
package org.myorg;
public class Test{
public static boolean isExsitLoop(SingleList a) {
Node<T> slow = a.head;
Node<T> fast = a.head; while (fast != null && fast.next != null) {
slow = slow.next;
fast = fast.next.next;
if (slow == fast)
return true;
}
return false;
}
public static void main(String args[]){
SingleList list = new SingleList();
for(int i=0;i<100;i++){
list.add(i);
}
System.out.print(SingleList.isExistingLoop(list));
}
}
package org.myorg;
public class Node{
public Object data; //
public Node next; //
public Node(Object value){
this.data = value;
}
public Node(){
this.data = null;
this.next = null;
}
}
package org.myorg;
public class SingleList{
private int size;
private Node head;
private void init(){
this.size = 0;
this.head = new Node();
}
public SingleList(){
init();
}
public boolean contains(Object value){
boolean flag = false;
Node p = head.next;
while(p!=null){
if(value.equals(p.data)){
flag = true;
break;
}else(
p = p.next;
)
}
return flag;
}
public boolean add(Object value){
if(contains(value))
return false;
else{
Node p = new Node(value);
p.next=head.next;
head.next = p;
size++;
}
return true;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
38. Java의 Leetcode 솔루션텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.