java는 수조와 체인 테이블을 사용하여 대기열 예시를 실현합니다

4686 단어
(1) 수조로 이루어진 대기열:
  
//  
public interface NetJavaList { 
  public void add(Student t);    //  
  public Student get(int index);// , ,  
  public int size(); 


학생류를 정의하다

class Student { 
    private String name ;   // ,  
    private int score ; 
    public Student(String name , int score){ 
        this.name = name ; 
        this.score = score ; 
    } 
    public void printInfo(){ 
        System.out.println(" "+name + " "+score ) ; 
    } 

사용자 정의 인터페이스를 실현합니다

public class STList implements NetJavaList{ 
private Student[] str = new Student[0] ; 
    //  
    public void add(Student t) { 
        Student[] src = new Student[str.length+1]; 
        for(int i=0;i<str.length;i++){ 
            src[i]=str[i] ; 
        } 
        src[str.length]=t ; 
        str = src ; 
    } 

    //  
    public Student get(int index) { 
        Student t = str[index]; 
        return t; 
    } 

    //  
    public int size() { 

        return str.length; 
    } 


주 함수 클래스를 써서 다음 대기열을 실현합니다

public class Manager { 
    public static void main(String[] args) { 
        STList sil = new STList() ; 
        for(int i=0;i<5;i++){ 
        Student st = new Student("name"+i,i*10);     
        sil.add(st); 
        } 
       printList(sil) ; 

    } 
//  
  public static void printList(STList t){ 
      for(int i=0;i<t.size();i++){ 
          Student f =t.get(i); 
          f.printInfo(); 
      } 

  } 

(2) 체인 테이블이 실현하는 대기열은 먼저 노드 클래스를 정의한다

public class LinkNode { 
private Object obj ; //  
private LinkNode next ; //  
//  
public LinkNode(Object obj){ 
    this.obj = obj ; 

public Object getObj(){ 
    return obj ; 

public void setObj(Object obj){ 
    this.obj = obj ; 


public LinkNode getNext(){ 
    return next ; 

public void setNext(LinkNode next){ 
    this.next =next ; 


그리고 대기열의 실현 방법 클래스를 작성하세요
 
public class LinkList { 

    public static LinkNode root ;//  
    public LinkNode last = null ;//  
    public static void main(String ara[]){ 
        LinkList df = new LinkList() ; 
        df.add(1); 
        df.add(2); 
        df.add(3); 
        df.printLinkList(root); 
        df.move(root,2) ; 
        df.move(root,2) ; 
        df.printLinkList(root); 

    } 
    /*
     *
     */ 
    public void add(Object obj){ 
        //  
        LinkNode t = new LinkNode(obj); 
        if(root ==null){ 
            root = t ; 
            last = root ; 
        }else{ 
            last.setNext(t); 
            last = t ; 
        } 

    } 
    /*
     *
     */ 
    public void printLinkList(LinkNode root){ 
        if(null != root){ 
            Object data = root.getObj(); 
            System.out.println(data); 
            LinkNode temp = root.getNext(); 
            printLinkList(temp) ; 
        } 
    } 
    /*
     *
     */ 
    public LinkNode move(LinkNode root,int index){ 
        if(this.getLength()<index || index <0){ 
            throw new RuntimeException(" :"+index + 
                ",size:" +this.getLength()) ; 
        }else{ 
        int count = 1 ;LinkNode sd = root ; 
         while(count!=index-1){ 
             sd = sd.getNext(); 

         } 

         
         sd.setNext(sd.getNext().getNext()); 
        return root ; 
    }} 

   /*
    *
    */ 
      public int  getLength(){ 
        int count = 0 ; 
        if(root==null){ 
            return count ; 
        } 
        LinkNode node =root.getNext(); 
        while(null != node){ 
            count ++ ; 
            node=node.getNext(); 

        } 
        //System.out.println((count+1)); 
        return count+1 ; 
      } 

좋은 웹페이지 즐겨찾기