首页 > 其他分享 >实验一

实验一

时间:2024-10-15 21:01:16浏览次数:1  
标签:begin end cout v0 v1 实验 include

实验1

代码:

 1 #include <iostream>
 2 #include <string>
 3 #include <vector>
 4 #include <algorithm>
 5 
 6 using namespace std;
 7 
 8 // 声明
 9 // 模板函数声明
10 template<typename T>
11 void output(const T &c);
12 
13 // 普通函数声明
14 void test1();
15 void test2();
16 void test3();
17 
18 int main() {
19     cout << "测试1: \n";
20     test1();
21 
22     cout << "\n测试2: \n";
23     test2();
24 
25     cout << "\n测试3: \n";
26     test3();
27 }
28 
29 // 函数实现
30 // 输出容器对象c中的元素
31 template <typename T>
32 void output(const T &c) {
33     for(auto &i: c)
34         cout << i << " ";
35     cout << endl;
36 }
37 
38 // 测试1
39 // 组合使用算法库、迭代器、string反转字符串
40 void test1() {
41     string s0{"0123456789"};
42     cout << "s0 = " << s0 << endl;
43 
44     string s1{s0};
45     reverse(s1.begin(), s1.end());  // 反转指定迭代器区间的元素
46     cout << "s1 = " << s1 << endl;
47 
48     string s2{s0};
49     reverse_copy(s0.begin(), s0.end(), s2.begin()); // 将指定迭代区间的元素拷贝到指定迭代器开始的目标区间,并且在复制过程中反转次序
50     cout << "s2 = " << s2 << endl;
51 }
52 
53 // 测试2
54 // 组合使用算法库、迭代器、vector反转动态数组对象vector内数据
55 void test2() {
56     vector<int> v0{2, 0, 4, 9};
57     cout << "v0: ";
58     output(v0);
59 
60     vector<int> v1{v0};
61     reverse(v1.begin(), v1.end());
62     cout << "v1: ";
63     output(v1);
64 
65     vector<int> v2{v0};
66     reverse_copy(v0.begin(), v0.end(), v2.begin());
67     cout << "v2: ";
68     output(v2);
69 }
70 
71 // 测试3
72 // 组合使用算法库、迭代器、vector实现元素旋转移位
73 void test3() {
74     vector<int> v0{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
75     cout << "v0: ";
76     output(v0);
77 
78     vector<int> v1{v0};
79     rotate(v1.begin(), v1.begin()+1, v1.end());  // 旋转指定迭代器区间[v1.begin(), v1.end())之间的数据项,旋转后从迭代器v1.begin()+1位置的数据项开始
80     cout << "v1: ";
81     output(v1);
82 
83     vector<int> v2{v0};
84     rotate(v2.begin(), v2.begin()+2, v2.end());
85     cout << "v2: ";
86     output(v2);
87 
88     vector<int> v3{v0};
89     rotate(v3.begin(), v3.end()-1, v3.end());
90     cout << "v3: ";
91     output(v3);
92 
93     vector<int> v4{v0};
94     rotate(v4.begin(), v4.end()-2, v4.end());
95     cout << "v4: ";
96     output(v4);
97 }
View Code

运行结果:

实验2

代码:

 1 #include <iostream>
 2 #include <vector>
 3 #include <string>
 4 #include <algorithm>
 5 #include <numeric>
 6 #include <iomanip>
 7 
 8 using namespace std;
 9 
10 // 函数声明
11 // 模板函数声明
12 template<typename T>
13 void output(const T &c);
14 
15 // 普通函数声明
16 int rand_int_100();
17 void test1();
18 void test2();
19 
20 int main() {
21     cout << "测试1: \n";
22     test1();
23 
24     cout << "\n测试2: \n";
25     test2();
26 }
27 
28 // 函数实现
29 // 输出容器对象c中的元素
30 template <typename T>
31 void output(const T &c) {
32     for(auto &i: c)
33         cout << i << " ";
34     cout << endl;
35 }
36 
37 // 返回[0, 100]区间内的一个随机整数
38 int rand_int_100() {
39     return rand() % 101;
40 }
41 
42 // 测试1
43 // 对容器类对象指定迭代器区间进行赋值、排序
44 void test1() {
45     vector<int> v0(10);  // 创建一个动态数组对象v0, 对象大小为10
46     generate(v0.begin(), v0.end(), rand_int_100); // 产生[0, 100]之间的随机整数赋值给指定迭代器区间[v0.begin(), v0.end())内的每个数据项
47     cout << "v0: ";
48     output(v0);
49 
50     vector<int> v1{v0};
51     sort(v1.begin(), v1.end()); // 对指定迭代器区间[v1.begin(), v1.end())内数据项进行升序排序
52     cout << "v1: ";
53     output(v1);
54 
55     vector<int> v2{v0};
56     sort(v2.begin()+1, v2.end()-1); // 对指定迭代器区间[v1.begin()+1, v1.end()-1)内数据项进行升序排序
57     cout << "v2: ";
58     output(v2);
59 }
60 
61 // 测试2
62 // 对容器类对象指定迭代器区间进行赋值、计算最大值/最小值/均值
63 void test2() {
64     vector<int> v0(10);  
65     generate(v0.begin(), v0.end(), rand_int_100); 
66     cout << "v0: ";
67     output(v0);
68 
69     auto iter1 = min_element(v0.begin(), v0.end());
70     cout << "最小值: " << *iter1 << endl;
71 
72     auto iter2 = max_element(v0.begin(), v0.end());
73     cout << "最大值: " << *iter2 << endl;
74 
75     auto ans = minmax_element(v0.begin(), v0.end());
76     cout << "最小值: " << *(ans.first) << endl;
77     cout << "最大值: " << *(ans.second) << endl;
78     double avg1 = accumulate(v0.begin(), v0.end(), 0)/v0.size();
79     cout << "均值: " << fixed << setprecision(2) << avg1 << endl;
80 
81     cout << endl;
82 
83     vector<int> v1{v0};
84     cout << "v0: ";
85     output(v0);
86     sort(v1.begin(), v1.end());
87     double avg2 = accumulate(v1.begin()+1, v1.end()-1, 0)/(v1.size()-2);
88     cout << "去掉最大值、最小值之后,均值: " << avg2 << endl;
89 }
View Code

运行结果:

实验3

代码:

 1 #include <iostream>
 2 #include <string>
 3 #include <algorithm>
 4 
 5 bool is_palindrome(std::string s);
 6 
 7 int main() {
 8     using namespace std;
 9     string s;
10 
11     while(cin >> s)  // 多组输入,直到按下Ctrl+Z后结束测试
12         cout << boolalpha << is_palindrome(s) << endl;
13 }
14 
15 // 函数is_palindrom定义
16 // 待补足
17 bool is_palindrome(std::string s){
18     std::string s1{s};
19     reverse(s1.begin(),s1.end());
20     for(int i=0;i<=s1.size()/2;i++){
21         if(s1[i]!=s[i])
22         return false;
23     }
24     return true;
25 }
View Code

运行结果:

实验4

代码:

 1 #include <iostream>
 2 #include <string>
 3 #include <algorithm>
 4 
 5 std::string dec2n(int x, int n = 2);
 6 
 7 int main() {
 8     using namespace std;
 9 
10     int x;
11     while(cin >> x) {
12         cout << "十进制: " << x << endl;
13         cout << "二进制: " << dec2n(x) << endl;
14         cout << "八进制: " << dec2n(x, 8) << endl;
15         cout << "十六进制: " << dec2n(x, 16) << endl << endl;
16     }
17 }
18 
19 // 函数dec2n定义
20 // 待补足
21 std::string dec2n(int x,int n){
22     std::string s="";
23     int t;
24     if(x==0){
25         s="0";
26     }
27     while(x>0){
28         t=x%n;
29         x=x/n;
30         if(t>=10)
31             s+=t-10+'A';
32         else
33             s+=t+'0';
34     }
35     reverse(s.begin(),s.end());
36     return s;
37 }
View Code

 

运行结果:

 

实验5

代码:

 1 #include <iostream>
 2 #include <string>
 3 #include<iomanip>
 4 using namespace std;
 5 int main() {
 6     int i,j;
 7     char a,b;
 8     cout<<"  "<<setw(2);
 9     for(i=0;i<=25;i++){
10         a='a'+i;
11         cout<<a<<setw(2);
12     }
13     cout<<endl;
14     for(j=1;j<=26;j++){
15         cout <<j<<setw(2);
16         for(i=0;i<=25;i++){
17             if(i+j<26) {
18                 b='A'+i+j;
19                 cout <<b<<setw(2);
20             }
21             else{
22                 b='A'+i+j-26;
23                 cout <<b<<setw(2);
24             }
25         }
26     cout<<endl;
27     }
28     return 0;
29 }
View Code

运行结果:

 

实验6

代码:

 1 #include<iostream>
 2 #include<cstdlib>
 3 #include<ctime>
 4 #include<iomanip>
 5 
 6 using namespace std;
 7 
 8 
 9 int main()
10 {
11     srand(time(0));
12     int i,a,b,c,num,sum;
13     double correct;
14     i=1;
15     sum=0;
16     while(i<=10)
17     {
18         c=rand()%4+1;
19         a=rand()%10+1;
20         b=rand()%10+1;
21         if(c==1)
22         {
23             cout<<a<<" + "<<b<<" = ";
24             cin>>num;
25             if(num==(a+b))
26                sum++;
27             i++;
28         }
29         if(c==2)
30         {
31             cout<<a<<" * "<<b<<" = ";
32             cin>>num;
33             if(num==(a*b))
34                sum++;
35             i++;
36         }
37         if(c==3)
38         {
39             if(a>=b)
40             {
41                 cout<<a<<" - "<<b<<" = ";
42                 cin>>num;
43                 if(num==(a-b))
44                    sum++;
45                 i++;
46             }
47             if(a<b)
48             {
49                 cout<<b<<" - "<<a<<" = ";
50                 cin>>num;
51                 if(num==(b-a))
52                    sum++;
53                 i++;
54             }
55         }
56         if(c==4)
57         {
58             if(a%b==0 && b!=0)
59             {
60                 cout<<a<<" / "<<b<<" = ";
61                 cin>>num;
62                 if(num==(a/b));
63                    sum++;
64                 i++;
65             }
66             else if(b%a==0 && a!=0)
67             {
68                 cout<<b<<" / "<<a<<" = ";
69                 cin>>num;
70                 if(num==(b/a));
71                    sum++;
72                 i++;
73             }
74         }
75     }
76     correct=sum/10*100;
77     cout<<fixed<<setprecision(2);
78     cout<<"正确率:"<<correct<<"%";
79     return 0;
80 }
View Code

运行结果:

 

标签:begin,end,cout,v0,v1,实验,include
From: https://www.cnblogs.com/121ywq/p/18468428

相关文章

  • 实验1 现代C++编程初体验
    实验任务1:task1.cpp1//现代C++标准库、算法库体验2//本例用到以下内容:3//1.字符串string,动态数组容器类vector、迭代器4//2.算法库:反转元素次序、旋转元素5//3.函数模板、const引用作为形参67#include<iostream>8#include<string......
  • 实验一
    task1:点击查看代码//现代C++标准库、算法库体验//本例用到以下内容://1.字符串string,动态数组容器类vector、迭代器//2.算法库:反转元素次序、旋转元素//3.函数模板、const引用作为形参#include<iostream>#include<string>#include<vector>#include<algo......
  • 实验二
    #include<stdio.h>#include<stdlib.h>#include<time.h>#defineN5#defineN1397#defineN2467#defineN321intmain(){ intcnt; intrandom_major,random_no; srand(time(NULL)); cnt=0; while(cnt<N){ random_major=rand()%2; if......
  • 实验1 现代C++编程初体验
    实验任务1代码#include<iostream>#include<vector>#include<string>#include<algorithm>#include<numeric>#include<iomanip>usingnamespacestd;template<typenameT>voidoutput(constT&c);intrand_int_1......
  • 实验1
    实验任务1: 实验代码:1#include<iostream>2#include<string>3#include<vector>4#include<algorithm>56usingnamespacestd;78//声明9//模板函数声明10template<typenameT>11voidoutput(constT&c);1213//......
  • 实验一
    1//2//现代C++标准库、算法库体验3//本例用到以下内容:4//1.字符串string,动态数组容器类vector、迭代器5//2.算法库:反转元素次序、旋转元素6//3.函数模板、const引用作为形参78#include<iostream>9#include<string>10#include......
  • 实验1 现代C++编程初体验
    一、实验目的体验现代C++标准库、算法库用法灵活组合使用现代C++基础语言特性(数据表示、分支、循环、函数)和标准库,编程解决简单、基础问题编程代码过程中,注意编码素养。关注代码表达,提升代码的可读性、易于维护性二、实验准备系统浏览教材以下章节,对现代c++基础语言特性和......
  • 20222301 2024-2025-1 《网络与系统攻防技术》实验二实验报告
    1.实验内容本次实验主要围绕渗透测试与远程执行控制展开,通过不同工具和技术手段实现了对目标主机的深入渗透与监控。实验内容可以概括为以下几个方面:1.远程Shell获取:实验首先通过`netcat`和`cron`定时任务,以及`socat`与Windows任务计划相结合的方式,实现了对目标主机的远程Shell......
  • 实验2
    实验任务1include<stdio.h>include<stdlib.h>include<time.h>defineN5defineN1397defineN2476defineN321intmain(){intcnt;intrandom_major,random_no;srand(time(NULL));cnt=0;while(cnt<N){random_major=rand()......
  • 数据采集实验一
    题目一(1)要求:用requests和BeautifulSoup库方法定向爬取给定网址(http://www.shanghairanking.cn/rankings/bcur/2020)的数据,屏幕打印爬取的大学排名信息。pytho......