我想计算 N! 的数字总和。
我想对非常大的 N 值执行此操作,例如 N(1500)。我没有使用 .NET 4.0。我不能使用 BigInteger 类来解决这个问题。
这可以通过其他算法或程序来解决吗?请帮忙。
我想做这样的事情计算任意大数的阶乘,显示所有数字,但在 C# 中。但是我无法解决。
我想计算 N! 的数字总和。
我想对非常大的 N 值执行此操作,例如 N(1500)。我没有使用 .NET 4.0。我不能使用 BigInteger 类来解决这个问题。
这可以通过其他算法或程序来解决吗?请帮忙。
我想做这样的事情计算任意大数的阶乘,显示所有数字,但在 C# 中。但是我无法解决。
有两个性能快捷方式可用于您选择的任何实现。
这样,
16*15*14*13*12*11*10*9*8*7*6*5*4*3*2 = 20,922,789,888,000
//-->
16*1.5*14*13*12*11*1*9*8*7*6*0.5*4*3*2 = 20,922,789,888 //Sum of 63
此外,感觉应该有一些算法,而不是全部计算出来。到 18!,数字的总和是:
2,6,6,3,9,9,9,27,27,36,27,27,45,45,63,63,63
//the sums of the resulting digits are:
2,6,6,3,9,9,9,9,9,9,9,9,9,9,9,9,9
值得注意的是,1500的数字之和!是 16749(27 位数字之和)
就我而言,没有什么特殊的魔法可以让你计算数字的总和。
无论如何,创建自己的 BigInteger 类应该不难——你只需要从三年级开始实现长乘法算法。
如果您的目标是计算 N! 的数字之和,并且如果 N 是合理有界的,则可以在没有BigInteger
类型的情况下执行以下操作:
BigInteger
)您可以在以下位置找到源代码:http ://codingloverlavi.blogspot.in/2013/03/here-is-one-more-interesting-program.html
#include<stdio.h>
#include<conio.h>
#include<iostream.h>
#include<time.h>
#define max 5000
void multiply(long int *,long int);
void factorial(long int *,long int);
int main()
{
clrscr();
cout<<"PROGRAM TO CALCULATE FACTORIAL OF A NUMBER";
cout<<"\nENTER THE NUMBER\n";
long int num;
cin>>num;
long int a[max];
for(long int i=0;i<max;i++)
a[i]=0;
factorial(a,num);
clrscr();
//PRINTING THE FINAL ARRAY...:):):)
cout<<"THE FACTORIAL OF "<<num<<" is "<<endl<<endl;
long int flag=0;
int ans=0;
for(i=0;i<max;i++)
{
if(flag||a[i]!=0)
{
flag=1;
cout<<a[i];
ans=ans+a[i];
}
}
cout<<endl<<endl<<"the sum of all digits is: "<<ans;
getch();
return 1;
}
void factorial(long int *a,long int n)
{
long int lavish;
long int num=n;
lavish=n;
for(long int i=max-1;i>=0&&n;i--)
{
a[i]=n%10;
n=n/10;
}
for(i=2;i<(lavish);i++)
{
multiply(a,num-1);
num=num-1;
}
}
void multiply(long int *a,long int n)
{
for(long int i=0;i<max;i++)
a[i]=a[i]*n;
for(i=max-1;i>0;i--)
{
a[i-1]=a[i-1]+(a[i]/10);
a[i]=a[i]%10;
}
}
这是一些工作代码。可以改进一些组件以提高效率。这个想法是使用我在学校被告知的任何乘法算法,并将长整数存储为字符串。
List<int>()
作为事后的想法,我认为用而不是代表大数会更聪明string
。但我会把它作为练习留给读者。
static string Mult(string a, string b)
{
int shift = 0;
List<int> result = new List<int>();
foreach (int aDigit in a.Reverse().Select(c => int.Parse(c.ToString())))
{
List<int> subresult = new List<int>();
int store = 0;
foreach (int bDigit in b.Reverse().Select(c => int.Parse(c.ToString())))
{
int next = aDigit*bDigit + store;
subresult.Add(next%10);
store = next/10;
}
if (store != 0) subresult.Add(store);
subresult.Reverse();
for (int i = 0; i < shift; ++i) subresult.Add(0);
subresult.Reverse();
int newResult = new List<int>();
store = 0;
for (int i = 0; i < subresult.Count; ++i)
{
if (result.Count >= i + 1)
{
int next = subresult[i] + result[i] + store;
if (next >= 10)
newResult.Add(next % 10);
else newResult.Add(next);
store = next / 10;
}
else
{
int next = subresult[i] + store;
newResult.Add(next % 10);
store = next / 10;
}
}
if (store != 0) newResult.Add(store);
result = newResult;
++shift;
}
result.Reverse();
return string.Join("", result);
}
static int FactorialSum(int n)
{
string result = "1";
for (int i = 2; i <= n; i++)
result = Mult(i.ToString(), result);
return result.Sum(r => int.Parse(r.ToString()));
}
假设上面的代码片段与您的方法在同一个类中Main
,因此调用它。
输入
static void Main(string[] args)
{
Console.WriteLine(FactorialSum(1500));
}
输出
16749
这是您在其中一个评论中引用的 C++ 代码的一个端口。从 C++ 移植到 C# 时要意识到的一件事是,在布尔比较中使用时,零整数评估为假,非零整数评估为真。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ArbitraryFactorial
{
class Program
{
const int max = 5000;
static void display(int[] arr)
{
int ctr = 0;
for (int i = 0; i < max; i++)
{
if (ctr == 0 && arr[i] != 0) ctr = 1;
if (ctr != 0)
Console.Write(arr[i]);
}
}
static void factorial(int[] arr, int n)
{
if (n == 0) return;
int carry = 0;
for (int i = max - 1; i >= 0; --i)
{
arr[i] = (arr[i] * n) + carry;
carry = arr[i] / 10;
arr[i] %= 10;
}
factorial(arr, n - 1);
}
static void Main(string[] args)
{
int[] arr = new int[max];
arr[max - 1] = 1;
int num;
Console.Write("Enter the number: ");
num = int.Parse(Console.ReadLine());
Console.Write("Factorial of " + num + " is: ");
factorial(arr, num);
display(arr);
}
}
}
如果没有类型,您根本无法使用这些数字BigInteger
。
没有算法或过程可以将大于 2 64的数字压缩到long
.
您需要为 .Net 3.5 找到 BigInteger 实现。