C++实验报告
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
C++课程实验报告
1340601119 林子扬1.试定义一个类STR,实现求两个字符串的交集。两个字符串的交集是指同时属于两个字符串的字符的集合,且该集合中的字符各不相同。具体要求如下:
(1)私有数据成员: char s1[50],s2[50],s0[50];字符串s0用于存放字符串s1和字符串s2的交集。
(2)公有成员函数:
●STR(char *p1,char *p2);构造函数,分别用参数p1和p2初始化成员数组s1和s2。
●int isin(char *p,char c);判断字符c是否出现在字符串p中,如果是,则返回值为1,否则返回0。
●void fun();求成员数组s1和s2的交集,并将结果存放在成员数组s0中。提示:利用函数isin(char *,char)依次判断一个字符串中的每个字符是否包含于另一个字符串中,如果包含,且该字符不包含于成员数组s0中,则将该字符加入到成员数组s0中。
●void print();按输出示例的格式输出所有数据成员。
(3)在主函数中对该类进行测试。
输出示例:
字符串1:abcdef123abc12
字符串2:acef123ace124
两个字符串的交集:acef123
源程序代码:
#include
#include
class STR{
char s0[50],s1[50],s2[50];
public:
STR(char *p1,char *p2);
int isin(char *p,char c);
void fun();
void print();
};
STR::STR(char *p1,char *p2)
{
strcpy(s1,p1);
strcpy(s2,p2);
s0[0]='\0';
}
int STR::isin(char *p,char c)
{
char *p0=p;
while(*p0)
{
if(*p0++==c) return 1;//后置自增参与后指向下一位
}
return 0;
}
void STR::fun()
{
char *p0=s0,*p1=s1;
while(*p1){
if(isin(s2,*p1)&&(!isin(s0,*p1)))
{
*p0++=*p1;
}
*p0='\0';
p1++;
}
/*for(char *p1=s1,*p0=s0;*p1;p1++) {
if(isin(s2,*p1)&&(!isin(s0,*p1)))
*p0++=*p1;
*p0='\0';
}*/
}
void STR::print()
{
cout<<"字符串1:"< cout<<"字符串2:"< cout<<"两个字符的交集:"< } void main() { char str1[]="abcdef123abc12"; char str2[]="acef123ace124"; STR t(str1,str2); t.fun(); t.print(); } 运行结果: 2.试定义一个类Array,实现由一个数组派生出另一个数组。派生规则如下:新数组的元素取值为原数组中相同位置元素的左、右两个相邻元素前后拼接后形成的整数(左邻元素在前, 右邻元素在后)。规定最左(右)列元素的左(右)邻元素为该元素所在行的最右(左)侧的元素。具体要求如下: (1)私有数据成员: ●int a [3][4]; 原数组。 ●int b [3][4]; 派生数组。 (2)公有成员函数 ●Array(int t[][4],int n);构造函数,利用参数t的前n行元素初始化数据成员a。 ●int nn(int t1,int t2);返回t1,t2拼接后形成的整数(t1在前,t2在后)。 ●void fun();按题意生成新数组,并将结果存放到数据成员b中。 ●void print();按矩阵形式输出成员数组。 (3)在主函数中对该类进行测试。 输出示例: 原数组: 41 67 34 0 69 24 78 58 62 64 5 45 派生数组: 67 4134 670 3441 5824 6978 2458 7869 4564 625 6445 562 源程序代码: #include #include class Array{ int a[3][4]; int b[3][4]; public: Array(int t[][4],int n); int nn(int t1,int t2); void fun(); void print(); }; Array::Array(int t[][4],int n) { for(int i=0;i for(int j=0;j<4;j++) a[i][j]=t[i][j]; } int Array::nn(int t1,int t2) { int t=t2; while(t) { t1*=10;