高级语言讲义2020软专(仅高级语言部分)

1.编写递归函数int change(char*s),将字符串s中的所有空格后的字母转换为大写字母。注:不允许使用string.h头文件和其声明的相关函数。

cpp 复制代码
#include <stdio.h>

int change(char *str) {
	int i=0;
	while(str[i]!='\0') {
		if(str[i]==' '&&str[i+1]>-'a'&&str[i+1]<='z')
			str[i+1]=str[i+1]-'a'+'A';
		i++;
	}
	printf("%s",str);
}

2.编写函数,将一个正整数分解质因数,即多个质因子相乘的形式,只需返回质因子的个数。例: 90=2*3*3*5, 函数返回4

cpp 复制代码
#include <stdio.h>
#include <math.h>

int isprime(int n){
	if(n<=1)
	return 0;
	for(int i=2;i<=sqrt(n);i++)
	if(n%i==0)
	return 0;
	return 1;
}

int getcount(int n){
	int count=1;
	for(int i=2;i<n;i++)
	if(n%i==0&&isprime(i)){
		n/=i;	
		i--;
		count++;
	}
	return count;
}

int main(){
	printf("%d",getcount(90));
}

3.编写函数int de(int a[][10], int n),求二维整型数组中每行的和,并删除和最大的一行.要求:数组中剩余元素保存原来次序顺序存储,并返回最大的和。

cpp 复制代码
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define N 10

int del(int a[][N],int n) {
	int max=0,maxflag,sum;
	for(int i=0; i<n; i++) {
		sum=0;
		for(int j=0; j<n; j++)
			sum+=a[i][j];
		if(sum>max) {
			max=sum;
			maxflag=i;
		}
	}
	for(int i=maxflag; i<n; i++)
		for(int j=0; j<n; j++)
			a[i][j]=a[i+1][j];
	return max;
}

void generateRandomArray(int arr[][N], int rows, int cols) {
	for (int i = 0; i < rows; i++)
		for (int j = 0; j < cols; j++)
			arr[i][j] = rand() % 100;
}

void printArray(int arr[][N], int rows, int cols) {
	for (int i = 0; i < rows; i++) {
		for (int j = 0; j < cols; j++)
			printf("%4d ", arr[i][j]);
		printf("\n");
	}
}

int main() {
	int arr[N][N];
	srand(time(NULL));
	generateRandomArray(arr, N, N);
	printf("max = %d\n",del(arr,N));
	printArray(arr, N-1, N);
	return 0;
}

4.学生成绩信息包含学号、姓名和成绩三项,定义存储上述学生成绩信息的单向链表的结点类型,并编写函数,由键盘输入n个学生的成绩信息,创建一个用于管理学生成绩信息的单向链表A,并在创建过程中随时保证单向链表的结点顺序满足成绩从低到高。

cpp 复制代码
#include <stdio.h>
#include <stdlib.h>

typedef struct node {
	int num;
	char name[20];
	int score;
	struct node *next;
} node;

struct node *create(int n) {
	struct node *head=(struct node *)malloc(sizeof(struct node));
	head->next=NULL;
	struct node *pre=head;
	for(int i=0; i<n; i++) {
		struct node *p=(struct node *)malloc(sizeof(struct node));
		scanf("%d %s %d",&p->num,&p->name,&p->score);
		while(pre->next!=NULL&&pre->next->score<p->score)
			pre=pre->next;
		p->next=pre->next;
		pre->next=p;
		pre=head;
	}
	return head->next;
}

5.编写函数,从文件classB.txt中读取另一个班级的学生成绩信息创建链表B (文件classB.txt 中的信息按照成绩从低到高的顺序存储),将单向链表B与上题中的单向链表A归并为一个按学生成绩从低到高排序的单向链表。

cpp 复制代码
#include <stdio.h>
#include <stdlib.h>

typedef struct node {
	int num;
	char name[20];
	int score;
	struct node *next;
} node;

struct node *create(int n) {
	struct node *head=(struct node *)malloc(sizeof(struct node));
	head->next=NULL;
	struct node *pre=head;
	for(int i=0; i<n; i++) {
		struct node *p=(struct node *)malloc(sizeof(struct node));
		scanf("%d %s %d",&p->num,&p->name,&p->score);
		while(pre->next!=NULL&&pre->next->score<p->score)
			pre=pre->next;
		p->next=pre->next;
		pre->next=p;
		pre=head;
	}
	return head->next;
}

struct node *creatfromfile() {
	FILE *file;
	if((file=fopen("classB.txt","r"))==NULL) {
		printf("open error");
		exit(0);
	}
	struct node *head=(struct node *)malloc(sizeof(struct node));
	struct node *pre=head;
	while(!feof(file)) {
		struct node *p=(struct node *)malloc(sizeof(struct node));
		fscanf(file,"%d %s %d",&p->num,&p->name,&p->score);
		while(pre->next!=NULL&&pre->next->score<p->score)
			pre=pre->next;
		p->next=pre->next;
		pre->next=p;
		pre=head;
	}
	fclose(file);
	return head->next;
}

struct node *merge(struct node *head1,struct node *head2) {
	struct node *head=(struct node *)malloc(sizeof(struct node));
	struct node *p=head1,*q=head2,*rear=head;
	while(p!=NULL&&q!=NULL) {
		if(p->score<q->score) {
			rear->next=p;
			rear=p;
			p=p->next;
		} else {
			rear->next=q;
			rear=q;
			q=q->next;
		}
	}
	if(p!=NULL)
		rear->next=p;
	else
		rear->next=q;
	return head->next;
}
相关推荐
CQ_07122 小时前
自学记录:力扣hot100第三题
算法·leetcode
杜子不疼.4 小时前
结构体的嵌套问题
c语言·c++
Wilber的技术分享4 小时前
【机器学习实战笔记 12】集成学习:AdaBoost算法
人工智能·笔记·算法·决策树·机器学习·分类·集成学习
一ge科研小菜鸡5 小时前
编程语言的演化与选择:技术浪潮中的理性决策
java·c语言·python
金融小师妹6 小时前
基于LSTM-GARCH混合模型的“获利了结”量化解析:黄金单日1.27%跌幅的技术性归因
大数据·人工智能·算法
爱捣鼓的XiaoPu6 小时前
基于Spring Boot的计算机考研交流系统的设计与实现
spring boot·后端·考研·毕业设计
永夜的黎明6 小时前
【二进制安全作业】250616课上作业1-栈溢出漏洞利用
c语言·汇编·安全
不良手残7 小时前
Java实现10大经典排序算法
数据结构·算法·排序算法
是紫焅呢7 小时前
I排序算法.go
开发语言·后端·算法·golang·排序算法·学习方法·visual studio code
辉辉还没睡7 小时前
Lora训练
人工智能·算法·机器学习