Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Potential error handles. #2

Open
326037785 opened this issue Oct 26, 2024 · 0 comments
Open

Potential error handles. #2

326037785 opened this issue Oct 26, 2024 · 0 comments

Comments

@326037785
Copy link

For the functions in BeizerInterpolation:

1、
unsigned long long int faculty(unsigned int number) {
unsigned long long int f = 1;
for(unsigned int i =1; i <= number; ++i)
f *= i;
return f;
}
The user may input the number which is too large, it needs a alarm for the input"number"
2、
T binomial_coeff(unsigned int n, unsigned int k) {
return faculty(n) / ( faculty(k) * faculty(n-k) );
}
k should be less than n, and when k == n or k == 1, it can return 1 as to reduce complexity.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant