Data structure and algorithm

paul2725
BinomialFunctions.hpp

/** * @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 Header file of definitions for implementation * 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. */ #ifndef _BINOMIALFUNCTIONS_H_ #define _BINOMIALFUNCTIONS_H_ #include <iostream> using namespace std; // global definitions typedef long long int bigint; // give long int an alias name of bigint // Function prototypes for our BinomialFunctions library go here #endif // _BINOMIALFUNCTIONS_H_