函数相关论文范例,与计算机自考题库安全,计算机安全员考试培训题库专栏相关论文查重免费
本论文是一篇函数相关论文查重免费,关于计算机自考题库安全,计算机安全员考试培训题库专栏相关本科论文范文。免费优秀的关于函数及程序及指针方面论文范文资料,适合函数论文写作的大学硕士及本科毕业论文开题报告范文和学术职称论文参考文献下载。
++,elseflag等于0,}
returnx,
}
voidf(intn)//将n分解为若干个质数之积
{
intflag等于1,
inti等于2,//保证i为质数
do{
while((21)){
if(flag等于等于1){
cout<,<,i,
flag等于0,
}
elsecout<,<,'*'<,<,i,
n等于n/i,
}
(22),
}while(i<,n),
if(n!等于1)
if(flag等于等于1)cout<,<,n,elsecout<,<,'*'<,<,n,
}
voidmain(void)
{
intx,
do{
cout<,<,"请输入一个整数,若小于3则重输:",
cin>,>,x,
}while(x<,3),
cout<,<,x<,<,'等于',
f(x),
cout<,<,endl,
}
13.以下程序的功能是:实现两个字符串拼接,函数strcat(char*s1,char*s2)先将s1所指向的字符串拷贝到s所指向的动态申请的存储空间,接着将s2所指向的字符串拼接s所指向的字符后面,并返回拼接后的字符串.
[程序](4分)
#include<,iostream.h>,
char*strcat(char*s1,char*s2)
{
char*s,*p,*q,
intlen1等于0,len2等于0,
p等于s1,
while(*p!等于'\0'){
len1++,
p++,
}
p等于s2,
while(*p!等于'\0'){
len2++,
函数相关论文范例
}
s等于q等于(23),
p等于s1,
for(inti等于0,i<,len1,i++)*q++等于*p++,
p等于s2,
while((24)),
(25),
}
voidmain(void)
{
chars1[]等于"visual",
chars2[]等于"isesay",
char*s,
s等于(26),
cout<,<,s<,<,endl,
delete[]s,
}
14.下面程序的功能是:将两个有序链表合并为一个有序链表.函数merge(node*h1,node*h2)将由h1和h2合并一个依然有序链表大小相同15,9,8,7,3
h2:15,12,10,7,3,2
合并后得到的新链表为:15,15,12,10,9,8,7,7,3,3,2
[程序](4分)#include<,iostream.h>,
structnode{
intdata,
node*next,
},
node*merge(node*h1,node*h2)
{
if(h1等于等于NULL)returnh2,
if(h2等于等于NULL)returnh1,
node*h等于NULL,
if((27)){
h等于h1,
h1等于h1->,next,
}
else{
h等于h2,
h2等于h2->,next,
}
node*p等于h,
while((28)){
if(h1->,data>,等于h2->,data){
p->,next等于h1,
p等于h1,
h1等于h1->,next,
}
else{
p->,next等于h2,
p等于h2,
h2等于h2->,next,
}
}
if(h1!等于NULL)(29),
else
if(h2!等于NULL)p->,next等于h2,
returnh,
}
voidmain(void)
{
nodea[5]等于{{15},{9},{8},{7},{3}},
nodeb[6]等于{{15},{12},{10},{7},{3},{2}},
node*h,*h1,*h2,*p,
本篇论文url:http://www.sxsky.net/xie/070257753.html
inti,
h1等于a,
h2等于b,
for(i等于0,i<,4,i++)a[i].next等于&,a[i+1],//形成a链表
a[4].next等于NULL,
for(i等于0,i<,5,i++)b[i].next等于&,b[i+1],//形成b链表
b[5].next等于NULL,
(30),
p等于h,
while(p){
cout<,<,p->,data<,<,'\t',
p等于p->,next,
}
cout<,<,endl,
}
VC++2016年秋笔试卷的参考答案:
21.C22.B23.D24.C25.D26.B27.A28.C29.A30.D
构造函数
17
运算符重载4.void
5.register
9
7.1
8.5111637
9.5273275
3
2468
12.23
13.55
14.32
15.Yourfriend!
16.u
17.5
18.3
19.flag
20.x%i等于等于0
21.n%i等于等于0
22.i等于prime(i)
newchar[len1+len2+1]
*q++等于*p++
returns
strcat(s1,s2)
27.h1->,data>,h2->,data
28.h1!等于NULL&,&,h2!等于NULL
29.p->,next等于h1
30.h等于merge(h1,h2)
1
第4页VC++
函数相关论文范例,与计算机自考题库安全,计算机安全员考试培训题库专栏相关论文查重免费参考文献资料: