首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >以getter作为参数调用函数不会保留引用?

以getter作为参数调用函数不会保留引用?
EN

Stack Overflow用户
提问于 2019-03-28 23:39:44
回答 1查看 40关注 0票数 0

我的代码有一个问题,我创建了一个二进制搜索树数据结构,当我调用一个带有节点的子节点的函数,然后在函数中为这个子节点赋值时,它不会更新节点的子节点。

//*** Pseudo-ish Code ***

class BSTNode {

    private BSTNode lChild;
    private BSTNode rChild;
    private int key;

    public BSTNode(int key) {
        this.lChild = null;
        this.rChild = null;
        this.key = key;
    }

    //getters and setters for each field ^
}

class BST {

    private BSTNode root;

    public BST() {
        this.root = null;
    }

    public void insert(BSTNode currentNode, int value) {

        BSTNode newNode = new BSTNode(value);

        if (currentNode == null) {

            currentNode = newNode;
            if (this.root == null) {
                this.root = currentNode;
            }

        } else {

            //ignore the newNode == currentNode value statement right now

            if (newNode.getValue() < currentNode.getValue()) {
                insert(currentNode.getlChild(), value);
            } else if (newNode.getValue() > curNode.getValue()) {
                insert(curNode.getrChild(), value);
            }
        }
    }

    //getters and setters
}

我仍然想自己弄清楚代码,但我很好奇为什么我要用以下命令运行这段代码:

BST testBST = new BST();

testBST.insert(testBST.getRoot(), 10);
testBST.insert(testBST.getRoot(), 7);

System.out.print(testBST.getRoot()); 
System.out.print(" ");
System.out.print(testBST.getRoot().getlChild());

这将输出10,然后输出一个NullPointerException。我理解这是因为不知何故7没有被分配为10的lChild,但我不知道为什么?是我遇到了作用域问题,还是因为我在插入函数中递归调用了getlChild(),所以无法访问实际的私有lChild字段?

注意:我正在使用sysout调试我的代码,我注意到递归确实起作用了,并且它确实将7正确地分配给了currentNode,但是一旦函数运行完毕,就像currentNode不再引用初始根节点的lChild。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2019-03-29 01:02:25

问题出在这里:

BSTNode newNode = new BSTNode(value);

每次计算机调用递归方法insert()时,都会创建一个new BSTNode()。您只想每次添加一个new BSTNode(),但它会一次又一次地创建节点。例如,您想要添加3,为此它必须调用insert() 4次。它将创建4节点,而不是仅创建1节点。

除了删除一些错误之外,我还在BSTNode class中创建了递归insertValue()方法。因此,您不必在每次调用此方法时都跟踪currentNode。因为,每个节点都将调用自己的insertValue()方法。

//*** Pseudo-ish Code ***
class BSTNode 
{
    public BSTNode lChild;
    public BSTNode rChild;
    public int key;

    public BSTNode(int key) 
    {
        this.lChild = null;
        this.rChild = null;
        this.key = key;
    }

    /* Create INSERT function in BSTNode class so that you dont have to give the "CurrentNode" everytime
       you call this method, Now you just have to pass the "Key"*/
    public void insertValue(int insertValue)
    {
        if(insertValue < key)
        {
            if(lChild == null)
                lChild = new BSTNode(insertValue);
            else
                lChild.insertValue(insertValue);
        }
        else if(insertValue > key)
        {
            if(rChild == null)
                rChild = new BSTNode(insertValue);
            else
                rChild.insertValue(insertValue);
        }
        else;
    }
}

class BST 
{
    private BSTNode root;
    public BST() 
    {
        this.root = null;
    }

    // just create the root if not present else it'll call the recursive method of BSTNode class
    public void insert(int value)
    {
        if(root == null)
            root = new BSTNode(value);
        else
            root.insertValue(value);
    }

    // you didn't provide these methods so i wrote my own just to get your code runing 
    public BSTNode getRoot()
    {
        return root;
    }

    public int getRootValue()
    {
        return root.key;
    }
}

public class BSTMain
{
    public static void main(String[] args)
    {   
        BST testBST = new BST();
        testBST.insert(10);
        testBST.insert(7);

        System.out.print(testBST.getRootValue()); 
        System.out.print(" ");
        System.out.print(testBST.getRoot().lChild.key);
    }
}

注意:我添加了一些像getRoot()这样的方法,只是为了让你的代码正常工作,因为你还没有提供它们。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/55401626

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档