1.简单输出整数:本题要求实现一个函数,对给定的正整数N
,打印从1到N
的全部正整数。
#include <stdio.h>
void PrintN ( int N );
int main ()
{
int N;
scanf("%d", &N);
PrintN( N );
return 0;
}
void PrintN(int N) {
// 检查N是否大于0
if (N > 0) {
// 使用for循环从1遍历到N
for (int i = 1; i <= N; i++) {
// 打印每个数字并换行
printf("%d\n", i);
}
} else {
// 如果N不是正整数,可以选择输出错误信息(这里不强制要求)
printf("N must be a positive integer.\n");
}
}
2.多项式求值:本题要求实现一个函数,计算阶数为n
,系数为a[0]
... a[n]
的多项式f(x)=(a[i]×xi) 在x
点的值。
#include <stdio.h>
#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;
}
#include<math.h>
double f(int n, double a[], double x) {
double sum = 0.0;
int i;
for (i = 0; i <= n; i++) {
sum += a[i] * pow(x, i); // a[i] * x^i
}
return sum;
}
3. 简单求和:本题要求实现一个函数,求给定的N
个整数的和。
#include <stdio.h>
#define MAXN 10
int Sum ( int List[], int N );
int main ()
{
int List[MAXN], N, i;
scanf("%d", &N);
for ( i=0; i<N; i++ )
scanf("%d", &List[i]);
printf("%d\n", Sum(List, N));
return 0;
}
int Sum(int List[], int N) {
int sum = 0;
for (int i = 0; i < N; i++) {
sum += List[i];
}
return sum;
}
4.求自定类型元素的平均:本题要求实现一个函数,求N
个集合元素S[]
的平均值,其中集合元素的类型为自定义的ElementType
。
#include <stdio.h>
#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;
}
ElementType Average(ElementType S[], int N) {
ElementType sum = 0.0;
for (int i = 0; i < N; i++) {
sum += S[i];
}
return sum / N;
}
5.求自定类型元素的最大值:本题要求实现一个函数,求N
个集合元素S[]
中的最大值,其中集合元素的类型为自定义的ElementType
。
#include <stdio.h>
#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<N; i++ )
scanf("%f", &S[i]);
printf("%.2f\n", Max(S, N));
return 0;
}
ElementType Max(ElementType S[], int N) {
if (N <= 0) {
// 如果数组为空或N为0,可以返回一个特定的值或进行错误处理
// 这里我们简单地返回0.0作为默认值
return 0.0;
}
ElementType maxValue = S[0]; // 假设第一个元素是最大的
for (int i = 1; i < N; i++) {
if (S[i] > maxValue) {
maxValue = S[i]; // 如果找到更大的值,则更新最大值
}
}
return maxValue;
}
6.求单链表结点的阶乘和:本题要求实现一个函数,求单链表L
结点的阶乘和。这里默认所有结点的值非负,且题目保证结果在int
范围内。
#include <stdio.h>
#include <stdlib.h>
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; i<N; i++ ) {
p = (List)malloc(sizeof(struct Node));
scanf("%d", &p->Data);
p->Next = L; L = p;
}
printf("%d\n", FactorialSum(L));
return 0;
}
int Factorial(int n) {
int result = 1;
for (int i = 2; i <= n; i++) {
result *= i;
}
return result;
}
int FactorialSum(List L) {
int sum = 0;
PtrToNode p = L;
while (p != NULL) {
sum += Factorial(p->Data);
p = p->Next;
}
return sum;
}
7. 统计某类完全平方数:本题要求实现一个函数,判断任一给定整数N
是否满足条件:它是完全平方数,又至少有两位数字相同,如144、676等。
#include <stdio.h>
#include <math.h>
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;
}
int IsTheNumber ( const int N )
{
int k,p,n=N,i,flat=0;
int a[10]={0};
k=sqrt(N);
if(k*k!=N)
{
return 0;
}
else
{
while(n)
{
p=n%10;
a[p]++;
n/=10;
}
for(i=0;i<10;i++)
{
if(a[i]>=2)
{
flat=1;
}
}
if(flat) return 1;
else return 0;
}
}
8.简单阶乘计算:本题要求实现一个计算非负整数阶乘的简单函数。
#include <stdio.h>
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;
}
int Factorial( const int N ){
int sum=1;
if(N>=0){
for(int i=1;i<=N;i++){
sum=sum*i;
}
return sum;
}
else
return 0;
}
9.统计个位数字:本题要求实现一个函数,可统计任一整数中某个位数出现的次数。例如-21252中,2出现了3次,则该函数应该返回3。
#include <stdio.h>
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;
}
#include <stdlib.h>
int Count_Digit ( const int N, const int D ) {
int count = 0;
int temp = abs(N); // 消除负号的影响,abs()函数需要#include <stdlib.h>
if(N==0&&D==0)
return 1;
while (temp > 0) {
int digit = temp % 10; // 获取当前最低位数字
if (digit == D) {
count++;
}
temp /= 10; // 移除最低位数字
}
return count;
}
10.阶乘计算升级版:本题要求实现一个打印非负整数阶乘的函数。
#include <stdio.h>
void Print_Factorial ( const int N );
int main()
{
int N;
scanf("%d", &N);
Print_Factorial(N);
return 0;
}
void Print_Factorial ( const int N ) {
if(N<0)
printf("Invalid input");
else {
int num[3000]={0},j,n=N; //num记录各个位上的数字,全初始化为0
num[0]=1; //个位初始化为1
int l=0; //记录结果的位数
int carry=0; //低位向高位的进位
for(int i=2;i<=n;i++) {
for(j=0;j<=l;j++) {
int temp=num[j]*i+carry;
num[j]=temp%10; //该位的数
carry=temp/10; //进位的数
}
while(carry) { //拓展结果的总位数记录进位的数,直到进位为0
num[j++]=carry%10; //该位的数
carry/=10; //进位的数
l++;
}
}
for(;l>=0;l--) //数组按照从地位到高位的方式存储结果,逆向输出结果
printf("%d",num[l]);
}
}
11.求自定类型元素序列的中位数:本题要求实现一个函数,求N
个集合元素A[]
的中位数,即序列中第⌊(N+1)/2⌋大的元素。其中集合元素的类型为自定义的ElementType
。
#include <stdio.h>
#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<N; i++ )
scanf("%f", &A[i]);
printf("%.2f\n", Median(A, N));
return 0;
}
ElementType Median( ElementType A[], int N )
{
int i, j, gap;
ElementType t;
for (gap = N / 2; gap > 0; gap /= 2)//分组(增量由大到小)
for (i = gap; i < N; i++)//各组依次在组内做插入排序
for (j = i - gap; j >= 0 && A[j] > A[j + gap]; j -= gap)//实现组内的插入
{
t=A[j];
A[j]=A[j+gap];
A[j+gap]=t;
}
return A[N/2];
}
12.判断奇偶性:本题要求实现判断给定整数奇偶性的函数。
#include <stdio.h>
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;
}
int even( int n ){
if(n%2==0)
return 1;
else
return 0;
}
13. 折半查找:给一个严格递增数列,函数int Search_Bin(SSTable T, KeyType k)用来二分地查找k在数列中的位置。
#include <iostream>
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;
}
int Search_Bin(SSTable T, KeyType k){
int l=0,r=T.length;
while(l<r){
int mid=(r-l)/2+l;
int temp=T.R[mid].key;
if(temp<k){
l=mid+1;
}else {
r=mid;
}
}
return T.R[l].key==k?l:0;
}