原题链接
题意:
本题要求实现一个函数,对给定的正整数N,打印从1到N的全部正整数。
函数接口定义:
void PrintN ( int N );
其中N是用户传入的参数。该函数必须将从1到N的全部正整数顺序打印出来,每个数字占1行。
裁判测试程序样例:
#include
void PrintN ( int N );
int main ()
{
int N;
scanf("%d", &N);
PrintN( N );
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
3
输出样例:
1
2
3
打印从1到N,直接for 循环输出
void PrintN ( int N )
{
for(int i=1;i<=N;++i)
printf("%d\n",i);
}
原题链接
题意:
本题要求实现一个函数,计算阶数为n,系数为a[0] … a[n]的多项式在x点的值。
函数接口定义:
double f( int n, double a[], double x );
其中n是多项式的阶数,a[]中存储系数,x是给定点。函数须返回多项式f(x)的值。
裁判测试程序样例:
#include
#define MAXN 10
double f( int n, double a[], double x );
int main()
{
int n, i;
double a[MAXN], x;
scanf("%d %lf", &n, &x);
for ( i=0; i<=n; i++ )
scanf("%lf", &a[i]);
printf("%.1f\n", f(n, a, x));
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
2 1.1
1 2.5 -38.7
输出样例:
-43.1
思路:
AC代码如下:
double f( int n, double a[], double x )
{
double ret = 0,xi;
for(int i =0;i<=n;++i)
{
xi = pow(x,i);
ret += a[i]*xi;
}
return ret; // (1) 自定义的double型函数,所以要用 return 返回一个结果
}
原题链接
题意:
本题要求实现一个函数,求给定的N个整数的和。
函数接口定义:
int Sum ( int List[], int N );
其中给定整数存放在数组List[]中,正整数N是数组元素个数。该函数须返回N个List[]元素的和。
裁判测试程序样例:
#include
#define MAXN 10
int Sum ( int List[], int N );
int main ()
{
int List[MAXN], N, i;
scanf("%d", &N);
for ( i=0; i
输入样例:
3
12 34 -5
输出样例:
41
解题思路:
题目求和,用 for 循环枚举法,直接加
AC代码:
int Sum ( int List[], int N )
{
long long int sum = 0;
for(int i = 0;i<N;++i)
{
sum += List[i];
}
return sum;
}
原题链接
题意:
本题要求实现一个函数,求N个集合元素S[]的平均值,其中集合元素的类型为自定义的ElementType。
函数接口定义:
ElementType Average( ElementType S[], int N );
其中给定集合元素存放在数组S[]中,正整数N是数组元素个数。该函数须返回N个S[]元素的平均值,其值也必须是ElementType类型。
裁判测试程序样例:
#include
#define MAXN 10
typedef float ElementType;
ElementType Average( ElementType S[], int N );
int main ()
{
ElementType S[MAXN];
int N, i;
scanf("%d", &N);
for ( i=0; i<N; i++ )
scanf("%f", &S[i]);
printf("%.2f\n", Average(S, N));
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
3
12.3 34 -5
输出样例:
13.77
解题思路:
AC代码:
ElementType Average( ElementType S[], int N )
{
ElementType pj = 0;
for(int i = 0;i<N;++i)
{
pj += S[i];
}
return pj/N;
}
原题链接
题意:
本题要求实现一个函数,求N个集合元素S[]中的最大值,其中集合元素的类型为自定义的ElementType。
函数接口定义:
ElementType Max( ElementType S[], int N );
其中给定集合元素存放在数组S[]中,正整数N是数组元素个数。该函数须返回N个S[]元素中的最大值,其值也必须是ElementType类型。
裁判测试程序样例:
#include
#define MAXN 10
typedef float ElementType;
ElementType Max( ElementType S[], int N );
int main ()
{
ElementType S[MAXN];
int N, i;
scanf("%d", &N);
for ( i=0; i
输入样例:
3
12.3 34 -5
输出样例:
34.00
解题思路:
要比较大小,不妨挨个挨个比较 ,可以先定义一个变量,让这个变量的初始值无限小,如 -100860 ,而只要在比较中,发现有比这个变量大的,就将这个变量的值等于这个值。最后直接输出,这个变量的值,即可。
AC代码:
ElementType Max( ElementType S[], int N )
{
ElementType max = -100860;
for(int i =0;i<N;++i)
{
if(max < S[i])
max = S[i];
}
return max;
}
原题链接
题意:
本题要求实现一个函数,求单链表L结点的阶乘和。这里默认所有结点的值非负,且题目保证结果在int范围内。
函数接口定义:
int FactorialSum( List L );
其中单链表List的定义如下:
typedef struct Node *PtrToNode;
struct Node {
int Data; /* 存储结点数据 */**
PtrToNode Next; /* 指向下一个结点的指针 */
};
typedef PtrToNode List; /* 定义单链表类型 */
裁判测试程序样例:
#include
#include
typedef struct Node *PtrToNode;
struct Node {
int Data; /* 存储结点数据 */
PtrToNode Next; /* 指向下一个结点的指针 */
};
typedef PtrToNode List; /* 定义单链表类型 */
int FactorialSum( List L );
int main()
{
int N, i;
List L, p;
scanf("%d", &N);
L = NULL;
for ( i=0; iData);
p->Next = L; L = p;
}
printf("%d\n", FactorialSum(L));
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
3
5 3 6
输出样例:
846
解题思路:
AC代码:
int FactorialSum( List L )
{
int s=0;
int i,u;
//i存放当前阶乘值 s存放总和 u存放当前元素值
List p=L; // (1) //为方便表示创建一个p 其地址与L相同
for (;p != NULL;) // 遍历元素
{
u=p->Data;
i=1;
while (u) // 求出阶乘之和
{
i*=u;
u--;
}
s+=i;
p=p->Next; //指针指向下一个节点 使遍历能够进行
}
return s;
}
原题链接
题意:
本题要求实现一个函数,判断任一给定整数N是否满足条件:它是完全平方数,又至少有两位数字相同,如144、676等。
函数接口定义:
int IsTheNumber ( const int N );
其中N是用户传入的参数。如果N满足条件,则该函数必须返回1,否则返回0。
裁判测试程序样例:
#include
#include
int IsTheNumber ( const int N );
int main()
{
int n1, n2, i, cnt;
scanf("%d %d", &n1, &n2);
cnt = 0;
for ( i=n1; i<=n2; i++ ) {
if ( IsTheNumber(i) )
cnt++;
}
printf("cnt = %d\n", cnt);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
105 500
输出样例:
cnt = 6
解题思路:
AC代码:
int IsTheNumber ( const int N )
{
int b = 0;
int c = sqrt(N); // c 表示 N 开放后的数
if(c*c != N) // (1) 判断是否为完全平方数
{
return 0;
}
int a[10] = {0}; // (2) 桶数组,在进行统计时,先全部初始化
int sum = N,i;
while(sum)
{
i = sum %10; // (3)i 表示 sum 的最后一位数
a[i]++;
if(a[i]==2) // (4)如果其中一个数出现两次,则符合题意,直接输出
{
b = 1;
break;
}
sum = sum/10; // (5) 见结论
}
return b;
}
求个位数上的数: N /1%10 (此时 , 1 可以省略)
求十位数上的数: N/10%10
求百位数上的数 : N/100%10
以此类推......
原题链接
题意
本题要求实现一个计算非负整数阶乘的简单函数。
函数接口定义:
int Factorial( const int N );
其中N是用户传入的参数,其值不超过12。如果N是非负整数,则该函数必须返回N的阶乘,否则返回0。
裁判测试程序样例:
#include
int Factorial( const int N );
int main()
{
int N, NF;
scanf("%d", &N);
NF = Factorial(N);
if (NF) printf("%d! = %d\n", N, NF);
else printf("Invalid input\n");
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
5
输出样例:
5! = 120
解题思路:
AC代码:
int Factorial( const int N )
{
if(N<0)
return 0;
if(N == 0||N == 1)
return 1;
long long int ret = 1;
for(int i =2;i<=N;++i)
{
ret *= i;
}
return ret;
}
原题链接
题意:
本题要求实现一个函数,可统计任一整数中某个位数出现的次数。例如-21252中,2出现了3次,则该函数应该返回3。
函数接口定义:
int Count_Digit ( const int N, const int D );
其中N和D都是用户传入的参数。N的值不超过int的范围;D是[0, 9]区间内的个位数。函数须返回N中D出现的次数。
裁判测试程序样例:
#include
int Count_Digit ( const int N, const int D );
int main()
{
int N, D;
scanf("%d %d", &N, &D);
printf("%d\n", Count_Digit(N, D));
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
-21252 2
输出样例:
3
解题思路:
AC代码:
int Count_Digit ( const int N, const int D )
{
int sum = N,tmp = 0,i;
if(N < 0)
sum = -N;
if(N == 0&&D == 0) //(1) 特殊情况,特殊判断
return tmp = 1;
while(sum)
{
i = sum % 10;
if(i == D)
tmp++;
sum = sum/10;
}
return tmp;
}
原题链接
题意:
本题要求实现一个打印非负整数阶乘的函数。
函数接口定义:
void Print_Factorial ( const int N );
其中N是用户传入的参数,其值不超过1000。如果N是非负整数,则该函数必须在一行中打印出**N!**的值,否则打印“Invalid input”。
裁判测试程序样例:
#include
void Print_Factorial ( const int N );
int main()
{
int N;
scanf("%d", &N);
Print_Factorial(N);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
15
输出样例:
1307674368000
AC代码:
void Print_Factorial ( const int N )
{
if(N<0)
printf("Invalid input");
else
{
int a[3010]={0},j,n=N; //数组 a[3010] 记录各个位上的数字,全初始化为0
a[0]=1; //个位初始化为1
int l=0,c = 0; //l,记录结果的位数共有多少位,便于结果输出 ; c,低位向高位的进位
for(int i=2;i<=n;i++)
{
for(j=0;j<=l;j++)
{
int temp=a[j]*i+c ;
a[j]=temp%10; //该位数上的数
c =temp/10; //需要进位的数
}
while(c)
{ //拓展结果的总位数记录进位的数,直到进位为0
a[j++]=c %10; //该位数上的数
c /=10; //需要进位的数
l++;
}
}
for(;l>=0;l--) //因为数组按照从地位到高位的方式存储结果,所以需要逆向输出结果
printf("%d",a[l]);
}
}
原题链接
题意:
本题要求实现一个函数,求N个集合元素A[]的中位数,即序列中第⌊(N+1)/2⌋大的元素。其中集合元素的类型为自定义的ElementType。
函数接口定义:
ElementType Median( ElementType A[], int N );
其中给定集合元素存放在数组A[]中,正整数N是数组元素个数。该函数须返回N个A[]元素的中位数,其值也必须是ElementType类型。
裁判测试程序样例:
#include
#define MAXN 10
typedef float ElementType;
ElementType Median( ElementType A[], int N );
int main ()
{
ElementType A[MAXN];
int N, i;
scanf("%d", &N);
for ( i=0; i
输入样例:
3
12.3 34 -5
输出样例:
12.30
解题思路:
AC代码:
原题链接
题意:
本题要求实现判断给定整数奇偶性的函数。
函数接口定义:
int even( int n );
其中n是用户传入的整型参数。当n为偶数时,函数返回1;n为奇数时返回0。注意:0是偶数。
裁判测试程序样例:
#include
int even( int n );
int main()
{
int n;
scanf("%d", &n);
if (even(n))
printf("%d is even.\n", n);
else
printf("%d is odd.\n", n);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例1:
-6
输出样例1:
-6 is even.
输入样例2:
5
输出样例2:
5 is odd.
解题思路:
AC代码:
int even( int n )
{
if(n%2) // 偶数
return 0;
else
return 1;
}
这里还可以优化:
奇数&1 == 1。
偶数&1 == 0。
int even( int n)
{
if(n&1)
return 1;
else
return 0;
}
bool even( int n)
{
if(n&1)
return 1;
else
reurn 0;
}
原题链接
题意:
给一个严格递增数列,函数int Search_Bin(SSTable T, KeyType k)用来二分地查找k在数列中的位置。
函数接口定义:
int Search_Bin(SSTable T, KeyType k)
其中T是有序表,k是查找的值。
裁判测试程序样例:
#include
using namespace std;
#define MAXSIZE 50
typedef int KeyType;
typedef struct
{ KeyType key;
} ElemType;
typedef struct
{ ElemType *R;
int length;
} SSTable;
void Create(SSTable &T)
{ int i;
T.R=new ElemType[MAXSIZE+1];
cin>>T.length;
for(i=1;i<=T.length;i++)
cin>>T.R[i].key;
}
int Search_Bin(SSTable T, KeyType k);
int main ()
{ SSTable T; KeyType k;
Create(T);
cin>>k;
int pos=Search_Bin(T,k);
if(pos==0) cout<<"NOT FOUND"<<endl;
else cout<<pos<<endl;
return 0;
}
/* 请在这里填写答案 */
输入格式:
第一行输入一个整数n,表示有序表的元素个数,接下来一行n个数字,依次为表内元素值。 然后输入一个要查找的值。
输出格式:
输出这个值在表内的位置,如果没有找到,输出"NOT FOUND"。
输入样例:
5
1 3 5 7 9
7
输出样例:
4
输入样例:
5
1 3 5 7 9
10
输出样例:
NOT FOUND
解法思路 ,二分板子题 ,直接套用二分模版即可;
AC代码
int Search_Bin(SSTable T, KeyType k) {
int mid, low = 1, high = T.length;
while (low <= high) {
mid = (low + high) / 2;
if (T.R[mid].key == k) return mid;
else if (T.R[mid].key > k) high = mid - 1;
else if (T.R[mid].key < k) low = mid + 1;
}