자바 빅 데이터 플랫폼 개발 연구 노트 (5)-이중 연결 목록 구성 및 사용

1. 데이터 구조 및 알고리즘 :


1 단계) HeroNode2 이중 연결 목록 클래스 만들기 :

class HeroNode2 {
    
    
    public int no;
    public String name;
    public String nickName;
    public HeroNode2 next;
    public HeroNode2 pre;

    public HeroNode2(int no, String name, String nickName){
    
    
        this.no = no;
        this.name = name;
        this.nickName = nickName;
    }

    @Override
    public String toString() {
    
    
        return "HeroNode{" +
                "no=" + no +
                ", name='" + name + '\'' +
                ", nickName='" + nickName + '\'' +
                //", next=" + next +
                '}';
    }
}

2 단계) 이중 연결 목록 헤더 만들기 :

class DoubleLinkedList {
    
    
    private HeroNode2 head = new HeroNode2(0, "", "");

    public HeroNode2 getHead() {
    
    
        return head;
    }

    public void list(){
    
    
        if(head.next == null){
    
    
            System.out.println("链表为空");
            return;
        }
        HeroNode2 temp = head.next;
        while(true){
    
    
            if(temp == null){
    
    
                break;
            }
            System.out.println(temp+"\r\n");
            temp = temp.next;
        }
        System.out.println();
    }
}

3 단계) 이중 연결 목록 요소를 추가하는 새 add 메서드를 만듭니다.

    public void add(HeroNode2 heroNode){
    
    
        HeroNode2 temp = head;
        while(true){
    
    
            if(temp.next == null){
    
    
                break;
            }
            temp = temp.next;
        }
        temp.next = heroNode;
        heroNode.pre = temp;
    }
   

4 단계) 이중 연결 목록 요소를 순회하는 새로운 목록 방법 :

    public void list(){
    
    
        if(head.next == null){
    
    
            System.out.println("链表为空");
            return;
        }
        HeroNode2 temp = head.next;
        while(true){
    
    
            if(temp == null){
    
    
                break;
            }
            System.out.println(temp+"\r\n");
            temp = temp.next;
        }
        System.out.println();
    }

5 단계) 이중 연결 목록 요소를 업데이트하는 새로운 updata 메서드 :

    public void updata(HeroNode2 newHeroNode){
    
    
        if(head.next == null){
    
    
            System.out.println("链表为空");
            return;
        }
        HeroNode2 temp = head.next;
        boolean flag = false;
        while (true){
    
    
            if(temp == null){
    
    
                break;
            }
            if(temp.no == newHeroNode.no){
    
    
                flag = true;
                break;
            }
            temp = temp.next;
        }
        if(flag == true){
    
    
            temp.name = newHeroNode.name;
            temp.nickName = newHeroNode.nickName;
        }else{
    
    
            System.out.println("没有找到需要修改的编号");
        }
    }

6 단계) 이중 연결 목록 요소를 삭제하는 새로운 del 메서드 :

    public void del(int no){
    
    
        HeroNode2 temp = head;
        if(head.next == null){
    
    
            System.out.println("链表为空");
            return;
        }
        boolean flag = false;
        while (true){
    
    
            if(temp.next == null){
    
    
                break;
            }
            if(temp.next.no == no){
    
    
                temp = temp.next;
                flag = true;
                break;
            }
            temp = temp.next;
        }
        if(flag == true){
    
    
            temp.pre.next = temp.next;
            if(temp.next != null) {
    
    
                temp.next.pre = temp.pre;
            }
        }else{
    
    
            System.out.println("没有找到需要删除的编号");
        }
    }

7 단계) 주요 방법 :

    public static void main(String[] args) {
    
    
        HeroNode2 heroNode1 = new HeroNode2(1, "宋江", "及时雨");
        HeroNode2 heroNode2 = new HeroNode2(2, "瑞军", "王启林");
        HeroNode2 heroNode3 = new HeroNode2(3, "无用", "之多新");
        HeroNode2 heroNode4 = new HeroNode2(4, "林冲", "豹子头");

        DoubleLinkedList doubleLinkedList = new DoubleLinkedList();
        doubleLinkedList.add(heroNode1);
        doubleLinkedList.add(heroNode2);
        doubleLinkedList.add(heroNode3);
        doubleLinkedList.add(heroNode4);

        System.out.println("修改前");
        doubleLinkedList.list();
    }


2020 년 9 월 8 일 ChiKong_Tam 작성

추천

출처blog.csdn.net/qq_42209354/article/details/108474552