I'm studying Data Structure in c++, 2-3 Tree.
And I wnat to know about the ' : MAXKEY(), root()'.
class Two3 {
public:
Two3(KeyType max, Two3Node<KeyType>* init = 0)
: MAXKEY(max), root(init) {}; //constructor
Boolean function(…);
private:
Two3Node<KeyType>* root;
KeyType MAXKEY;
Here's that I want to know.
: MAXKEY(max), root(init) {}; //constructor