This program is supposed to output the Calkin-Wilf tree. In other words it's supposed to show the fractions such as 1/1 and then next level is 1/2 and 2/1 ect
Please help with this thanks. Please do not write it out I have a hard time reading other peoples hand writing please just type it out.
Write a c++ program that implements and tests the following two functions related to the Calkin-Wilf enumeration of the positive fractions:
Fraction cwfrac(int p); //Returns the fraction in position p in the Calkin-Wilf enumeration.
int cwpos(Fraction f); //Returns the position of the fraction f in the Calkin-Wilf enumeration.