AuD
Lecture 'Algorithmen und Datenstrukturen' (code examples)
aud.KTreeNode.Entry Class Reference

Entry in a KTreeNode with reference to key and left child. More...

+ Collaboration diagram for aud.KTreeNode.Entry:

Public Member Functions

String toString ()
 

Detailed Description

Entry in a KTreeNode with reference to key and left child.

As for BinarySearchTree, null represents the smallest possible ("leftmost") key, see KTreeNode#compareKeys.

Definition at line 54 of file KTreeNode.java.

Member Function Documentation

◆ toString()

String aud.KTreeNode.Entry.toString ( )

Definition at line 66 of file KTreeNode.java.

66 {
67 return key!=null ? key.toString() : "null";
68 }

The documentation for this class was generated from the following file: