#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define MAX 10
int combinatorial(int m,int n)
{
int result=1;
for(int k=1;k<=n;k++)
{
result=(result*(m-n+k))/k;
}
return result;
}
int solution(char *str)
{
int result=0;
int l=strlen(str);
for(int i = 1; i <= l; i++)
result += combinatorial(26, i);
for(int i = 0; i < l; i++)
result -= combinatorial(26-(str[i]-'a'+1), l-i);
return result;
}
int main()
{
FILE *in_fp , *out_fp;
char **str;
char temp[MAX];
in_fp= fopen("input.txt", "r");
if(in_fp == NULL)
{
printf("Open file Error!");
exit(0);
}
fgets(temp, MAX, in_fp);
int num = atoi(temp);
str=(char **)malloc((num)*sizeof(char *));
for(int j=0;j<num;j++)
{
str[j]=(char*)malloc(sizeof(char)*MAX);
}
int i=0;
while(fgets(str[i], MAX, in_fp) != NULL)
{
if(str[i][strlen(str[i])-1] == '\n')
str[i][strlen(str[i])-1] = '\0';
i++;
}
fclose(in_fp);
out_fp= fopen("output.txt", "w");
char **list=(char**)malloc((num)*sizeof(char*));
for(int j=0;j<num;j++)
{
list[j]=(char*)malloc(sizeof(char)*MAX);
}
for(int i=0;i<num;i++)
{
sprintf(list[i], "%d" , solution(str[i]));
fputs( list[i], out_fp );
fputs("\n",out_fp);
}
fclose(out_fp);
for(int k=0;k<num;k++)
{
free(str[k]);
free(list[k]);
}
free(str);
free(list);
return 0;
}
注:
- C语言中,对于参数的要求似乎没有C++严格,封装的一些函数的const参数可以由变量输入如list[i]。数组也可以用变量定义维数。
- 求组合数的方法参考求组合数,直接用阶乘计算会溢出
- 关于C语言指针的一些小细节
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char *p=(char*)malloc(100);
char *q=(char*)malloc(100);
sprintf(p, "%d" , 1999);
q=p;
*q=*p;
strcpy(q,p);
return 0;
}
|