java 단일 체인 테이블에 고리가 있는지 확인하는 방법

이것은 마이크로소프트의 고전적인 필기시험 문제이다. 바로 두 개의 지침 h1이다. h2는 처음부터 단일 체인 시계를 훑어본다. h1은 한 번 앞으로 한 걸음 걷고 h2는 한 번 앞으로 두 걸음 걷는다. 만약에 h2가 NULL에 닿으면 링이 존재하지 않는다는 것을 설명한다.만약 h2가 뒤에 있어야 할 h1에 부딪히면 링이 존재한다는 것을 설명한다.
만약에 고리가 존재하지 않는다면 반드시 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;
    }


}

좋은 웹페이지 즐겨찾기