Data structure and algorithm

profilepaul2725
BinomialFunctions.cpp

/** * @author Jane Programmer * @cwid 123 45 678 * @class COSC 2336, Spring 2019 * @ide Visual Studio Community 2017 * @date January 22, 2019 * @assg Assignment 04 * * @description Implementation file of function implementations for * the Binomial Coefficient functions. We have functions for computing * the factorial of an integer and for counting the number of combinations * of n choose i items in this library. */ #include "BinomialFunctions.hpp" using namespace std;