2.0 Node and Tree Classes

(Mac version)

< 1.0 | 2.0 | 2.1 >

The next step is to create C++ classes representing a node (Node class) in a phylogenetic tree (Tree class).

We will then modify main.cpp to create a Tree object.

Step Title Description
Step 2.1 Create the Node Class

Declare the Node class and define its member functions in the header file node.hpp

Step 2.2 Create the Tree Class

Declare the Tree class and define its member functions in the header file tree.hpp

Step 2.3 Create the main function

Define the main function that serves as the entry point for the program in the source code file main.cpp

Step 2.4 Test Node and Tree

Test the new Node and Tree classes.

< 1.0 | 2.0 | 2.1 >