2

timerandを使用してツリー (BFS および DFS) のトラバーサルを JPanel にアニメーション化しようとしていpaintComponentます。

ここに画像の説明を入力

現在、BFSアルゴリズムはすべてのノードを即座にループし、訪問したノードをシアンにペイントします...しかし、ツリーがどのようにトラバースされているかを人々に見てもらいたいです...ノードごとに...だから私はしようとしています次の反復が実行されるときに遅延するタイマーを追加しwhile loopます...まったく機能していません...

タイマー:

public void timer() {
    int initialDelay = 1000;
    timer.scheduleAtFixedRate(new TimerTask() {
        public void run() {
            if (cancelTimer) {
                timer.cancel();
            }   
            if (counter == 3) {
                //reset 
                counter = 0;
            }
            if (counter < 3) {
                ++counter;
                System.out.println(counter);
            }       
        }
    }, initialDelay, 1000); 
}

paintComponent: ノードがトラバースされるときにノードを再描画します

public void paintComponent(Graphics g) {
    g.setColor(Color.BLACK);
    g.fillRect(0, 0, width, height);

    g.setColor(rootNode.getColor());
    g.fillRect(rootNode.getX(), rootNode.getY(), rootNode.getWidth(), rootNode.getHeight());

    g.setColor(Color.WHITE);
    g.drawString(rootNode.getValue(), rootNode.getX()+9, rootNode.getY()+16);
    paintComponent(g, rootNode);    
}

public void paintComponent(Graphics g, Nodes parentNode) {  
    //keep generating new nodePrintList to load with new Children
    ArrayList<Nodes> nodePrintList = new ArrayList<Nodes>();    

    //base case: end of nodeList
    if (nodeList.indexOf(parentNode)==nodeList.size()-1) {
        System.out.println("\nend");
    }
    else {  
    //traverse nodeList recursively 
        nodePrintList = getChildren(parentNode);    
        //loop through and print all children of node n
        //System.out.println();
        int x = parentNode.getX()-50;

        for (Nodes child : nodePrintList) {             
            g.setColor(child.getColor());
            child.setX(x);
            child.setY(parentNode.getY()+50);
            g.fillRect(child.getX(), child.getY(), child.getWidth(), child.getHeight());        
            g.setColor(Color.WHITE);
            g.drawString(child.getValue(), child.getX()+9, child.getY()+16);
            x+=50;
            //System.out.print("PARENT: " + parentNode.getValue() + " | x,y: " + parentNode.getX() + ", " + parentNode.getY() + "...\n CHILD: " + child.getValue() + " | x,y: " + child.getX() + ", " + child.getY());  
            paintComponent(g, child);
            g.drawLine(parentNode.getX()+10, parentNode.getY()+23, child.getX()+10, child.getY());
        }           
    }
    repaint();

}

BFS():

public void bfs() {

    Queue q = new LinkedList();
    q.add(rootNode);
    rootNode.visited(true);
    rootNode.setColor(Color.cyan);
    printNode(rootNode);
    //only perform check when counter = 10;
    while (!q.isEmpty()) {          
        Nodes n = (Nodes)q.remove();
        Nodes child = null;
        //put all unvisited children in the queue
        while ((child = getUnvisitedChildNode(n)) != null)
        {           
            if (counter == 3) {
                child.visited(true);
                printNode(child);
                q.add(child);
                child.setColor(Color.cyan); 
            }
        }
    }
    if (q.isEmpty()) {
        cancelTimer = true;
        //RepaintManager.currentManager(this).markCompletelyClean(this);
    }
}

何かご意見は?ありがとう!

4

1 に答える 1