Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IndexError in consolidate function #7

Open
MartinKern opened this issue Jul 3, 2020 · 1 comment
Open

IndexError in consolidate function #7

MartinKern opened this issue Jul 3, 2020 · 1 comment

Comments

@MartinKern
Copy link

In some cases there will be an IndexError in the consolidate function in line 122:
A = [None] * int(math.log(self.total_nodes) * 2)
int(math.log(self.total_nodes) * 2) is supposed to be the maximum number of distinct node degrees. This is however off by one and a bit. The node degree d is bound by where is the golden ratio (See Wikipedia). Doing the math I got . So the 2 needs to be replaced with something like 2.08. The number of possible distinct node degrees is one higher than this since nodes with a degree of zero need to be considered. The solution is to replace:
A = [None] * int(math.log(self.total_nodes) * 2)
with
A = [None] * int(math.log(self.total_nodes) * 2.08 + 1)

@ghost
Copy link

ghost commented Feb 7, 2021

There are two errors in the code and are both in the consolidate function.
The first is the '<=' instead of '<' pointed out by the answer to another comment.
The second is that the self.root_list doesn't get updated after the call to consolidate.
Either way both errors can be fixed by substituting the last lines of consolidate with the following:

    for i in range(0, len(A)):
        if A[i] is not None:
            if A[i].key <= self.min_node.key:
                self.min_node = A[i]
    
    self.root_list = self.min_node

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant