试卷管理系统C语言

实验要求:

老师在教学过程中,会经常以试卷的形式来检验学生的学习情况。现在由你来帮助老师设计一个试卷自动生成系统,完成从已有题库(题库包含2个文件,1个是选择题题库文件,1格式填空题题库文件)中随机提取指定题目书的题目生成一份新的试卷。该系统生成的试卷中只有2种题型:单项选择题、填空题(只有一个空)。其中

单项选择题包括题目编号、题目、选项A、选项B、选项C、选项D、答案

填空题包括题目编号、题目、答案

功能:

(1)试题添加:向试题库追加写入一道新的题目,要求题目编号自动生成,且与已存题目的编号不重复;所有内容不能为空。即不断充实题库;

(2)试题删除:通过题目编号进行题目的删除,如果删除成功则提示删除成功,否则提示删除失败;

(3)备份全部题目;

(4)删除全部题目;

(5)试题修改:通过题目编号查找对应题目,并修改指定的题目的内容,注意不是修改题目的全部内容,而是可以针对性的修改局部内容;

(6)试题查询:通过题目编号查询指定的题目的所有内容;

(7)统计共有多少道题目;

(8)查询题目中含有某个特定内容(用户输入)的所有题目内容;

(9)自动随机生成由单项选择题、填空题合在一起的试卷及标准答案2个文件(exam.txt和answer.txt),各题型的题目数由用户输入。注意选择题和填空题的题目数可以不一样;要求每次生成的试卷题目、顺序都不能完全相同。也就是要求真正的随机提取题目。

(10)以上功能要求通过菜单的方式进行操作;要求对相应内容进行必要的合法性检查。本题要求用链表实现。要求具有良好的人机交互界面。每个题型要提前录入至少10道题。

实验总结:

(对实验结果进行分析,问题回答,实验心得体会及改进意见)

问题1:怎么实现的查询指定题目

令中介指针等于头指针,遍历链表,判断题号是否等于待查询的题号,如果相等,则将这道题目打印出来;如果在两个题库中遍历之后没有找到,则回复没有这道题。

问题2:如何做到生成题号且不重复

定义一个全局变量number,并令number0,令number1,再添加一个题目,这样实现生成的题目的题号都是升序的且不重复的。在读取题库中原有的题目的时候,令number等于读取到的题目的序号,并在读取完一个题之后令number加一,这样就能保证每次新增题目题号都是按照顺序升序排列并且是最大的。

实验心得体会:这个实验我写了好几遍,每一遍都有不同的感悟,在写第一遍的时候,对于指针安排和链表使用比较混乱,并且内存分配逻辑不清晰,以至于程序写完之后出现bug找不到错误的地方;第二遍的时候优化了内存分配,使得程序可读性增强,但是依然在查找功能无法实行,代码无错误,结果却无法运行;后面的很多遍,在一次次的修改每个模块,实现了每个模块的功能。

通过写这次实验,我更好地理解了动态内存分配,并对链表有了更深刻的认识,提高了我的逻辑性。建立了文件与链表间的联系,将文件内容读到链表,再从链表中写入文件。另外还学习到了查找字符串内容的函数strstr()。

源程序:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h> 
typedef struct ChoiceQuestion { //选择题链表 int num;//题目编号char topic[10000];//题目char A[1000];//选项char B[1000];char C[1000];char D[1000]; char answer[10000];//答案 struct ChoiceQuestion *next;//保存下一个题目节点地址 
} ChoiceQuestion; 
typedef struct BlanksQuestion {  //填空题链表 int num;char topic[10000];char answer[1000];struct BlanksQuestion *next;//保存下一个题目节点地址 
} BlanksQuestion; 
int number = 0;
//将链表内容读入到文件中
void readQuestion(ChoiceQuestion *head1,ChoiceQuestion *t1,ChoiceQuestion *p1,BlanksQuestion *head2,BlanksQuestion *t2,BlanksQuestion *p2){FILE *choiceFile = fopen("D:\\xuanzeti.txt","w");//重写文件 FILE *blanksFile = fopen("D:\\tiankong.txt","w");p1=head1,p2=head2;//指向头节点位置while(p1!=NULL){fprintf(choiceFile,"%d %s\n",p1->num,p1->topic);fprintf(choiceFile,"%s\n",p1->A);fprintf(choiceFile,"%s\n",p1->B);fprintf(choiceFile,"%s\n",p1->C);fprintf(choiceFile,"%s\n",p1->D);fprintf(choiceFile,"%s\n",p1->answer);p1 = p1->next;} while(p2!=NULL){fprintf(blanksFile,"%d %s\n",p2->num,p2->topic);fprintf(blanksFile,"%s\n",p2->answer);p2 = p2->next;}fclose(choiceFile);fclose(blanksFile);
}
//1、添加试题  
void addQuestion(){while(1){system("cls");FILE *fp;printf("\n\t添加选择题  1");printf("\n\t添加填空题  2"); printf("\n\t请选择需要添加的题目种类:");int type;scanf("%d",&type);getchar(); if(type==1){fp = fopen("D:\\xuanzeti.txt","a+");number++;printf("\n\t新增题目的题号是:%d\n",number);printf("\n\t请输入新题目的内容\n\n\t请分别输入添加的题目、选项、答案\n");char choice[10000];printf("\n\t输入题目:");gets(choice);	fprintf(fp,"%d %s\n",number,choice);printf("\n\t输入选项A:");gets(choice);	fprintf(fp,"%s\n",choice);printf("\n\t输入选项B:");gets(choice);	fprintf(fp,"%s\n",choice);printf("\n\t输入选项C:");gets(choice);	fprintf(fp,"%s\n",choice);printf("\n\t输入选项D:");gets(choice);	fprintf(fp,"%s\n",choice);printf("\n\t输入答案:");gets(choice);	fprintf(fp,"%s\n",choice);printf("\n\t题目添加完毕");}else if(type==2){fp = fopen("D:\\tiankong.txt","a+");number++;printf("\n\t新增题目的题号是:%d\n",number);printf("\n\t请输入新题目的内容\n\n\t请分别输入添加的题目、答案\n");char blanks[10000];printf("\n\t输入题目:");gets(blanks);	fprintf(fp,"%d %s\n",number,blanks);printf("\n\t输入答案:");gets(blanks);	fprintf(fp,"%s\n",blanks);printf("\n\t题目添加完毕");}fclose(fp);}
} 
//2、删除试题 
void deleteQuestion(ChoiceQuestion *head1,ChoiceQuestion *t1,ChoiceQuestion *p1,BlanksQuestion *head2,BlanksQuestion *t2,BlanksQuestion *p2){int id,count=0;printf("\n\t请输入待删除的题目的编号:");scanf("%d",&id);p1=head1,p2=head2;//遍历节点if(head1!=NULL){if(head1->num==id){//如果头节点就是需要找的题目 head1 = head1->next;count=1;//标记,存在该结点 } else {while(p1->next!=NULL){//循环遍历 if(p1->next->num==id){p1->next = p1->next->next;//前驱节点就等于后驱节点 count = 1;break;}p1 = p1->next;}}}if(head2!=NULL&&!count){if(head2->num==id){head2 = head2->next;count = 1;} else {while(p2->next!=NULL){if(p2->next->num==id){p2->next = p2->next->next;count = 1;break;}p2 = p2->next;}}}readQuestion(head1,t1,p1,head2,t2,p2);if(count)printf("\n\t成功删除题目");elseprintf("\n\t删除失败\n");	
}
//3、备份所有题目
void backupQuestion(ChoiceQuestion *head1,ChoiceQuestion *t1,ChoiceQuestion *p1,BlanksQuestion *head2,BlanksQuestion *t2,BlanksQuestion *p2){system("cls");FILE *choiceFile = fopen("D:\\xuanzeti_choice.txt","w+"),*blanksFile = fopen("D:\\tiankong_blanks.txt","w+");p1=head1,p2=head2;while(p1!=NULL&&p1->num!=0){fprintf(choiceFile,"%d %s\n",p1->num,p1->topic);fprintf(choiceFile,"%s\n",p1->A);fprintf(choiceFile,"%s\n",p1->B);fprintf(choiceFile,"%s\n",p1->C);fprintf(choiceFile,"%s\n",p1->D);fprintf(choiceFile,"%s\n",p1->answer);p1=p1->next;}while(p2!=NULL&&p2->num!=0){fprintf(blanksFile,"%d %s\n",p2->num,p2->topic);fprintf(blanksFile,"%s\n",p2->answer);p2=p2->next;}printf("\n\t备份成功"); fclose(choiceFile);fclose(blanksFile);
}
//4、删除全部题目 
void deleteAllQuestion(){system("cls");        remove("D:\\xuanzeti.txt");remove("D:\\tiankong.txt");printf("\n\t删除成功!");
}
//5、试题修改 
void modifyQuestion(ChoiceQuestion *head1,ChoiceQuestion *t1,ChoiceQuestion *p1,BlanksQuestion *head2,BlanksQuestion *t2,BlanksQuestion *p2){system("cls");int id,count=0;printf("\n\t请输入待修改题目的编号:");scanf("%d",&id);getchar();if(head1==NULL)printf("\n\t选择题题库是空的\n");else {if(head1->num==id){printf("\n\t修改选择题的题目:");	gets(head1->topic);printf("\n\t修改A选项:");		gets(head1->A);printf("\n\t修改B选项:");		gets(head1->B);printf("\n\t修改C选项:");		gets(head1->C);printf("\n\t修改D选项:");		gets(head1->D);printf("\n\t修改答案:");		gets(head1->answer);printf("\n\t修改完成");count++;}else{while(p1!=NULL){if(p1->num==id){printf("\n\t修改选择题的题目:");	gets(p1->topic);printf("\n\t修改A选项:");		gets(p1->A);printf("\n\t修改B选项:");		gets(p1->B);printf("\n\t修改C选项:");		gets(p1->C);printf("\n\t修改D选项:");		gets(p1->D);printf("\n\t修改答案:");		gets(p1->answer);printf("\n\t修改完成\n");count++;break;	}else	p1 = p1->next;}}}if(head2==NULL)printf("\n\t填空题题库是空的\n");else{if(head2->num==id){printf("\n\t修改填空题题目:");		gets(head2->topic);printf("\n\t修改答案:");		gets(head2->answer);printf("\n\t修改完成\n");count++;}else{while(p2!=NULL){if(p2->num==id){printf("\n\t修改填空题题目:");		gets(p2->topic);printf("\n\t修改答案:");		gets(p2->answer);printf("\n\t修改完成\n");count++;	break;}elsep2 = p2->next;}}	}if(count==0)printf("\n\t修改失败\n");getchar();
}
//6、试题查询 
void findQuestion(ChoiceQuestion *head1,ChoiceQuestion *t1,ChoiceQuestion *p1,BlanksQuestion *head2,BlanksQuestion *t2,BlanksQuestion *p2){int id,count=0;printf("\n\t请输入要查找题目的编号:");scanf("%d",&id);getchar();if(head1==NULL)printf("\n\t选择题题库是空的\n");else{if(head1->num==id){printf("\n\t选择题题目是:");	puts(head1->topic);printf("\n\t选项A是:");	puts(head1->A);printf("\n\t选项B是:");	puts(head1->B);printf("\n\t选项C是:");	puts(head1->C);printf("\n\t选项D是:");	puts(head1->D);printf("\n\t答案是:");		puts(head1->answer);printf("\n\t查找成功\n");count++;} else{while(p1!=NULL){if(p1->num==id){printf("\n\t选择题题目是:");	puts(p1->topic);printf("\n\t选项A是:");	puts(p1->A);printf("\n\t选项B是:");	puts(p1->B);printf("\n\t选项C是:");	puts(p1->C);printf("\n\t选项D是:");	puts(p1->D);printf("\n\t答案是:");		puts(p1->answer);printf("\n\t查找成功\n");count++;break;	}elsep1 = p1->next;}}}if(head2==NULL)printf("\n\t填空题题库是空的\n");else{if(head2->num==id){printf("\n\t填空题题目是:");	puts(head2->topic);printf("\n\t答案是:");		puts(head2->answer);count++;}else{while(p2!=NULL){if(p2->num==id){printf("\n\t填空题题目是:");	puts(p2->topic);printf("\n\t答案是:");		puts(p2->answer);printf("\n\t查找成功\n");count++;break;	}elsep2 = p2->next;}}}if(count=0)printf("\n\t题目查询失败");getchar();
} 
//7、统计数目总数 
void totalQuestion(ChoiceQuestion *head1,ChoiceQuestion *t1,ChoiceQuestion *p1,BlanksQuestion *head2,BlanksQuestion *t2,BlanksQuestion *p2){int n1=0,n2=0;p1=head1,p2=head2;//遍历链表 while(p1!=NULL){p1=p1->next;n1++;} while(p2!=NULL){p2=p2->next;n2++;}printf("\n\t选择题题目总数为:%d",n1);printf("\n\t填空题题目总数为:%d",n2);printf("\n\t所有题目总数为:%d",n1+n2);
} 
//8、查询含有特定内容的题目内容 
void searchQuestion(ChoiceQuestion *head1,ChoiceQuestion *t1,ChoiceQuestion *p1,BlanksQuestion *head2,BlanksQuestion *t2,BlanksQuestion *p2){system("cls");printf("\n\t请输入需要查找的内容:");char s[1000];gets(s);int count=0;p1=head1,p2=head2;while(p1!=NULL){if( strstr(p1->topic,s)!=NULL ||    //查询字符串s是否是该题子串 strstr(p1->A,s)!=NULL || strstr(p1->B,s)!=NULL || strstr(p1->C,s)!=NULL || strstr(p1->D,s)!=NULL ){count=1; printf("\n\t待查询的内容属于选择题,题号是:%d\n",p1->num); printf("\n\t题目是:");		puts(p1->topic);printf("\n\t选项A是:"); 	puts(p1->A);printf("\n\t选项B是:");	puts(p1->B);printf("\n\t选项C是:");	puts(p1->C);printf("\n\t选项D是:");	puts(p1->D);printf("\n\t答案是:");		puts(p1->answer);}p1 = p1->next;
}while(p2!=NULL){if( strstr(p2->topic,s)!=NULL ){count=1;printf("\n\t待查询的内容属于填空题,题号是:%d\n",p2->num);printf("\n\t题目是:");		puts(p2->topic);printf("\n\t答案是:");		puts(p2->answer);}      p2 = p2->next;}if(count) printf("\n\t查询成功!");else printf("\n\t查询失败");
}
//生成试卷
void promoteQuestion(ChoiceQuestion *head1,ChoiceQuestion *t1,ChoiceQuestion *p1,BlanksQuestion *head2,BlanksQuestion *t2,BlanksQuestion *p2){system("cls");FILE *examFile = fopen("D:\\exam.txt","w");   //重写 FILE *answerFile = fopen("D:\\answer.txt","w");int s[1000],w=0,count=0,flag=0;int n1,r,i,j,k,m;p1=head1,p2=head2;while(p1!=NULL){p1=p1->next;count++;}while(p2!=NULL){p2=p2->next;flag++;}printf("\n\t选择题题目总数为:%d",count);printf("\n\t填空题题目总数为:%d",flag);printf("\n\t请输入你要生成的选择题的数量:");scanf("%d",&n1);	getchar();printf("\n\t请输入你要生成的填空题的数量:");scanf("%d",&r);	getchar();if(n1>count||r>flag){if(n1>count)printf("\n\t超出了选择题题库中的题目数量");if(r>flag)printf("\n\t超出了填空题题库中的题目数量");}else{for(i=0;i<n1;i++){int r=0,y=0;w=rand()%number;s[i]=w;for(j=0;j<i;j++){if(s[j]==s[i]){y++;break;} }if(y!=0){i=0;continue;}p1=head1;if(head1->num==w){fprintf(examFile,"%d %s\n",head1->num,head1->topic);fprintf(examFile,"%s\n%s\n%s\n%s\n",head1->A,head1->B,head1->C,head1->D);fprintf(answerFile,"%d %s\n",head1->num,head1->answer);r++;}else{while(p1!=NULL){if(p1->num==w){fprintf(examFile,"%d %s\n",p1->num,p1->topic);fprintf(examFile,"%s\n%s\n%s\n%s\n",p1->A,p1->B,p1->C,p1->D);fprintf(answerFile,"%d %s\n",p1->num,p1->answer);r++;break;}elsep1=p1->next;}}if(r==0){i--;continue;}}for(k=n1;k<n1+r;k++){int r=0,y=0;w=rand()%number;s[k]=w;for(m=0;m<k;m++){if(s[m]==s[k]){y++;break;}}if(y!=0){k--;continue;}p2=head2;if(head2->num==w){fprintf(examFile,"%d %s\n",head2->num,head2->topic);fprintf(answerFile,"%d %s\n",head2->num,head2->answer);r++;}else{while(p2!=NULL){if(p2->num==w){fprintf(examFile,"%d %s\n",p2->num,p2->topic);fprintf(answerFile,"%d %s\n",p2->num,p2->answer);r++;	break;}elsep2=p2->next;}}if(r==0){k--;continue;}}printf("\n\t试卷生成成功");} fclose(examFile);fclose(answerFile);getchar();
} 
int main(){srand((unsigned)time(NULL));ChoiceQuestion *head1,*t1,*p1;BlanksQuestion *head2,*t2,*p2;FILE *choiceFile = fopen("D:\\xuanzeti.txt","r+");FILE *blanksFile = fopen("D:\\tiankong.txt","r+");head1 =NULL, head2 = NULL;t1=(ChoiceQuestion*)malloc(sizeof(ChoiceQuestion)),t2=(BlanksQuestion*)malloc(sizeof(BlanksQuestion));//将文件内容读入链表中while(fscanf(choiceFile,"%d\n",&number)!=EOF){p1 = (ChoiceQuestion*)malloc(sizeof(ChoiceQuestion));if(head1==NULL) head1 = p1;else t1->next=p1;p1->next = NULL;fscanf(choiceFile,"%s\n",p1->topic);fscanf(choiceFile,"%s\n",p1->A);fscanf(choiceFile,"%s\n",p1->B);fscanf(choiceFile,"%s\n",p1->C);fscanf(choiceFile,"%s\n",p1->D);fscanf(choiceFile,"%c\n",&p1->answer);p1->num = number;t1 = p1;number++;} while(fscanf(blanksFile,"%d\n",&number)!=EOF){p2 = (BlanksQuestion*)malloc(sizeof(BlanksQuestion));if(head2 == NULL)	head2 = p2;else t2->next=p2;p2->next = NULL;fscanf(blanksFile,"%s\n",p2->topic);fscanf(blanksFile,"%s\n",p2->answer);p2->num = number;t2 = p2;number++;}fclose(choiceFile);fclose(blanksFile);int type;while(1){printf("\n\n\t\t欢迎进入试卷管理系统");printf("\n\n\t菜单:\n");printf("\n\t 1 试题添加");printf("\n\t 2 试题删除");printf("\n\t 3 备份全部试题");printf("\n\t 4 删除全部试题");printf("\n\t 5 试题修改");printf("\n\t 6 试题查询");printf("\n\t 7 统计共有多少道题目");printf("\n\t 8 查询题目中含有某个特定内容的所有题目");printf("\n\t 9 自动随机生成试卷及标准答案2个文件");printf("\n\t 0 退出\n");printf("\n\n\t 请选择你需要执行的操作:"); scanf("%d",&type);getchar();switch(type){case 1:	addQuestion();	break;case 2:	deleteQuestion(head1,t1,p1,head2,t2,p2);	break;case 3:	backupQuestion(head1,t1,p1,head2,t2,p2);	break;case 4:	deleteAllQuestion();	break;case 5:	modifyQuestion(head1,t1,p1,head2,t2,p2);	break;case 6:	findQuestion(head1,t1,p1,head2,t2,p2);	break;case 7:	totalQuestion(head1,t1,p1,head2,t2,p2);	break;case 8:	searchQuestion(head1,t1,p1,head2,t2,p2);	break;case 9:	promoteQuestion(head1,t1,p1,head2,t2,p2);	break;case 0:	printf("退出系统\n");	exit(0);	break;default:break;}}return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/738962.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

私立医院的革命者:大数据解决方案全面解析

第一部分&#xff1a;背景 在信息化飞速发展的今天&#xff0c;医疗行业正经历着一场深刻的数字化转型。特别是对于私立医院来说&#xff0c;要在这个变革的浪潮中立于不败之地&#xff0c;就必须拥抱新技术&#xff0c;优化服务流程&#xff0c;提高医疗质量。大数据技术&…

Mac M1:通过docker安装RocketMQ、RocketMQ-Dashboard

0. 引言 最近本地启动以前docker安装的rocketmq发现报错了&#xff0c;因为是从老mac迁移过来的&#xff0c;发现支持的芯片还是amd的&#xff0c;于是重新在docker下安装rocketmq&#xff0c;并记录下步骤&#xff0c;方便大家后续参考。 1. 步骤 1、先下载项目源码 git c…

基于eleiment-plus的表格select控件

控件不是我写的&#xff0c;来源于scui,但在使用中遇到了一些问题&#xff0c;希望能把过程记录下来&#xff0c;同时把这个问题修复掉。 在使用的时候对控件进行二级封装&#xff0c;比如我的一个商品组件&#xff0c;再很多地方可以用到&#xff0c;于是 <template>&l…

【Python】一文详细介绍 plt.rc_context() 在 Matplotlib 中的原理、作用、注意事项

【Python】一文详细介绍 plt.rc_context() 在 Matplotlib 中的原理、作用、注意事项 &#x1f308; 个人主页&#xff1a;高斯小哥 &#x1f525; 高质量专栏&#xff1a;Matplotlib之旅&#xff1a;零基础精通数据可视化、Python基础【高质量合集】、PyTorch零基础入门教程&a…

2024.3.11 C++作业

1、提示并输入一个字符串&#xff0c;统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数要求使用C风格字符串完成 #include <iostream>using namespace std;int main() {char str[20];cout << "please enter the str:";gets(str);in…

linux GitLab 私有仓库的搭建

下载地址 gitLab 安装包下载地址&#xff1a;https://about.gitlab.com/install/ 环境准备&#xff1a; 环境&#xff1a;CentOS7.6 安装包&#xff1a;gitlab-ce-8.9.5-ce.0.el7.x86_64.rpm 硬件配置&#xff1a; 4G 安装步骤&#xff1a; 安装&#xff1a; [rootserver3 ~]…

Docker学习——Dock镜像

什么是Docker镜像 Docker 镜像类似于虚拟机镜像&#xff0c;可以将它理解为一个只读的模板。 一个镜像可以包含一个基本的操作系统环境&#xff0c;里面仅安装了 Apache 应用程序&#xff08;或 用户需要的其他软件&#xff09; 可以把它称为一个 Apache 镜像。镜像是创建 Do…

如何把一款App从无到有运营起来?都需要哪些资源?

引言 在这个数字化的时代&#xff0c;移动应用程序&#xff08;App&#xff09;如同现代社会的魔法手段&#xff0c;将我们与世界连接在一起。无论是寻找爱情的那一刻&#xff0c;还是享受美食的时光&#xff1b;无论是在城市喧嚣中找到宁静的那一刻&#xff0c;还是在孤寂时刻…

2024 年广东省职业院校技能大赛(高职组) “云计算应用”赛项样题⑤

2024 年广东省职业院校技能大赛&#xff08;高职组&#xff09; “云计算应用”赛项样题⑤ 模块一 私有云&#xff08;50 分&#xff09;任务 1 私有云服务搭建&#xff08;10 分&#xff09;任务 2 私有云服务运维&#xff08;25 分&#xff09;任务 3 私有云运维开发&#xf…

八股文-持续更新......

文章目录 SpringSpringBootDubboMQMysqlNettyRedis并发ZookeeperMybatisElasticsearchLinux微服务ZookeeperMybatisElasticsearchLinux

软件杯 图像检索算法

文章目录 1 前言2 图像检索介绍(1) 无监督图像检索(2) 有监督图像检索 3 图像检索步骤4 应用实例5 最后 1 前言 &#x1f525; 优质竞赛项目系列&#xff0c;今天要分享的是 图像检索算法 该项目较为新颖&#xff0c;适合作为竞赛课题方向&#xff0c;学长非常推荐&#xff…

探索AIGC技术的未来:人工智能生成内容的挑战与机遇

引言 随着人工智能技术的迅猛发展&#xff0c;人工智能生成内容&#xff08;AIGC&#xff09;技术已经逐渐走进人们的视野。AIGC技术是指利用人工智能技术生成各种形式的内容&#xff0c;如文字、图像、音频、视频等。这种技术不仅可以提高内容生产效率&#xff0c;还可以创造…

面试全攻略:从自我介绍到职业规划的深度解析

面试优秀回答模板解析 以下是根据面试模板以及解释&#xff1a; 模板&#xff1a; 1. 自我介绍 请简单介绍一下您的个人背景、专业、工作经验以及您认为自己最大的优势是什么。 解释&#xff1a; 这个问题是面试的常规开场&#xff0c;帮助面试官快速了解应聘者的基本情况和自我…

c++之旅——第六弹

大家好啊&#xff0c;这里是c之旅第五弹&#xff0c;跟随我的步伐来开始这一篇的学习吧&#xff01; 如果有知识性错误&#xff0c;欢迎各位指正&#xff01;&#xff01;一起加油&#xff01;&#xff01; 创作不易&#xff0c;希望大家多多支持哦&#xff01; 一,静态成员&…

C++ 强制类型转换符(static_cast、reinterpret_cast、const_cast和dynamic_cast)

将类型名作为强制类型转换运算符的做法是C语言的老式做法&#xff0c;C 为保持兼容而予以保留。 C 引入了四种功能不同的强制类型转换运算符以进行强制类型转换&#xff1a;static_cast、reinterpret_cast、const_cast 和 dynamic_cast。 强制类型转换是有一定风险的&#xff0…

【rk3229 android7.1.2 替换默认输入法】

问题平台描述 问题描述解决方法 郑重声明:本人原创博文&#xff0c;都是实战&#xff0c;均经过实际项目验证出货的 转载请标明出处:攻城狮2015 Platform: Rockchip CPU:rk3229 OS:Android 7.1.2 Kernel: 3.10 问题描述 国内客户&#xff0c;觉得安卓自带的输入法不好用&#x…

智能警用装备柜管理系统|智能化可视化管理

智能警用装备柜管理系统|智能化可视化管理 我司&#xff08;JIONCH集驰&#xff09;警用装备管理系统&#xff08;智装备DW-S304&#xff09;是依托互云计算、大数据、RFID技术、数据库技术、AI、视频分析技术对警用装备进行统一管理、分析的信息化、智能化、规范化的系统。 智…

返回值不同算方法重载么?为什么?

1、典型回答 返回值不同不算方法重载 方法重载&#xff08;Overloading&#xff09;是指在同一个类中定义了多个同名方法&#xff0c;但它们的参数列表不同&#xff0c;方法重载要求方法&#xff1a; 名称相同参数类型、参数个数或参数顺序&#xff0c;至少有一个不同 方法…

IOS面试题object-c 91-100

91. 简述Object-C中nonatomic与atomic有什么区别?atomic是Objective-C使用的一种线程保护技术,它是为了防止写操作在未完成的时候被另外一个线程读取。从而造成数据错误。这种机制是非常耗费系统资源的,所以在iphone这种小的移动设备上,如果没有使用多线程间的通讯编程。建…

分布式之LoadBalancer

一、LoadBalancer介绍 Spring Cloud LoadBalancer是Spring Cloud官方自己提供的客户端负载均衡器,抽象和实现&#xff0c;用来替代Ribbon&#xff08;已经停更&#xff09;&#xff0c; 二、Ribbon和Loadbalance 对比 组件组件提供的负载策略支持负载的客户端Ribbon随机 Ran…