实验五

实验一:

 1 #include <stdio.h>
 2 #define N 5
 3 
 4 void input(int x[], int n);
 5 void output(int x[], int n);
 6 void find_min_max(int x[], int n, int *pmin, int *pmax);
 7 
 8 int main() {
 9     int a[N];
10     int min, max;
11 
12     printf("录入%d个数据:\n", N);
13     input(a, N);
14 
15     printf("数据是: \n");
16     output(a, N);
17 
18     printf("数据处理...\n");
19     find_min_max(a, N, &min, &max);
20 
21     printf("输出结果:\n");
22     printf("min = %d, max = %d\n", min, max);
23 
24     return 0;
25 }
26 
27 void input(int x[], int n) {
28     int i;
29 
30     for(i = 0; i < n; ++i)
31         scanf("%d", &x[i]);
32 }
33 
34 void output(int x[], int n) {
35     int i;
36     
37     for(i = 0; i < n; ++i)
38         printf("%d ", x[i]);
39     printf("\n");
40 }
41 
42 void find_min_max(int x[], int n, int *pmin, int *pmax) {
43     int i;
44     
45     *pmin = *pmax = x[0];
46 
47     for(i = 0; i < n; ++i)
48         if(x[i] < *pmin)
49             *pmin = x[i];
50         else if(x[i] > *pmax)
51             *pmax = x[i];
52 }

问题一:函数功能是寻找数组中的最大最小值

问题二:执行到45行时,pmin指向主函数中存储最小值的变量 pmax指向最大值变量

c4eedddb2f4819765d732bf89be9167c

 

 1 #include <stdio.h>
 2 #define N 5
 3 
 4 void input(int x[], int n);
 5 void output(int x[], int n);
 6 int *find_max(int x[], int n);
 7 
 8 int main() {
 9     int a[N];
10     int *pmax;
11 
12     printf("录入%d个数据:\n", N);
13     input(a, N);
14 
15     printf("数据是: \n");
16     output(a, N);
17 
18     printf("数据处理...\n");
19     pmax = find_max(a, N);
20 
21     printf("输出结果:\n");
22     printf("max = %d\n", *pmax);
23 
24     return 0;
25 }
26 
27 void input(int x[], int n) {
28     int i;
29 
30     for(i = 0; i < n; ++i)
31         scanf("%d", &x[i]);
32 }
33 
34 void output(int x[], int n) {
35     int i;
36     
37     for(i = 0; i < n; ++i)
38         printf("%d ", x[i]);
39     printf("\n");
40 }
41 
42 int *find_max(int x[], int n) {
43     int max_index = 0;
44     int i;
45 
46     for(i = 0; i < n; ++i)
47         if(x[i] > x[max_index])
48             max_index = i;
49     
50     return &x[max_index];
51 }

问题一:功能是寻找数组中的最大值 并返回其地址

问题二:可以 

bfc3e84f581e52181963ff202433c524

 

实验二:

 1 #include <stdio.h>
 2 #include <string.h>
 3 #define N 80
 4 
 5 int main() {
 6     char s1[N] = "Learning makes me happy";
 7     char s2[N] = "Learning makes me sleepy";
 8     char tmp[N];
 9 
10     printf("sizeof(s1) vs. strlen(s1): \n");
11     printf("sizeof(s1) = %d\n", sizeof(s1));
12     printf("strlen(s1) = %d\n", strlen(s1));
13 
14     printf("\nbefore swap: \n");
15     printf("s1: %s\n", s1);
16     printf("s2: %s\n", s2);
17 
18     printf("\nswapping...\n");
19     strcpy(tmp, s1);
20     strcpy(s1, s2);
21     strcpy(s2, tmp);
22 
23     printf("\nafter swap: \n");
24     printf("s1: %s\n", s1);
25     printf("s2: %s\n", s2);
26 
27     return 0;
28 }

问题一:80 sizeof计算的是这一字符串数据所需的存储字节数 strlen统计的是字符串长度

问题二: 不能 s1是字符数组不能直接用赋值计算法

问题三:交换了

9d827b6d23340156204e1c35087602da

 

 1 #include <stdio.h>
 2 #include <string.h>
 3 #define N 80
 4 
 5 int main() {
 6     char *s1 = "Learning makes me happy";
 7     char *s2 = "Learning makes me sleepy";
 8     char *tmp;
 9 
10     printf("sizeof(s1) vs. strlen(s1): \n");
11     printf("sizeof(s1) = %d\n", sizeof(s1));
12     printf("strlen(s1) = %d\n", strlen(s1));
13 
14     printf("\nbefore swap: \n");
15     printf("s1: %s\n", s1);
16     printf("s2: %s\n", s2);
17 
18     printf("\nswapping...\n");
19     tmp = s1;
20     s1 = s2;
21     s2 = tmp;
22 
23     printf("\nafter swap: \n");
24     printf("s1: %s\n", s1);
25     printf("s2: %s\n", s2);
26 
27     return 0;
28 }

问题一:s1存放的是字符串中首个字符的地址 sizeof计算的是指针变量本身的大小 strlen计算的是字符串有效字符长度

问题二:可以 2.1中是将字符串存储在字符数组中 而2.2是将字符串存放在指针数组中

问题三:交换的是s1 s2中存储的地址 内存不会交换 只会交换指针的指向af2c852d8b510498f7a4a19e5ed32c87

实验三:

 1 #include <stdio.h>
 2 
 3 int main() {
 4     int x[2][4] = {{1, 9, 8, 4}, {2, 0, 4, 9}};
 5     int i, j;
 6     int *ptr1;     
b5a64337d43a09c51a511e794d8194ad

 

 7     int(*ptr2)[4]; 
 8 
 9     printf("输出1: 使用数组名、下标直接访问二维数组元素\n");
10     for (i = 0; i < 2; ++i) {
11         for (j = 0; j < 4; ++j)
12             printf("%d ", x[i][j]);
13         printf("\n");
14     }
15 
16     printf("\n输出2: 使用指针变量ptr1(指向元素)间接访问\n");
17     for (ptr1 = &x[0][0], i = 0; ptr1 < &x[0][0] + 8; ++ptr1, ++i) {
18         printf("%d ", *ptr1);
19 
20         if ((i + 1) % 4 == 0)
21             printf("\n");
22     }
23                          
24     printf("\n输出3: 使用指针变量ptr2(指向一维数组)间接访问\n");
25     for (ptr2 = x; ptr2 < x + 2; ++ptr2) {
26         for (j = 0; j < 4; ++j)
27             printf("%d ", *(*ptr2 + j));
28         printf("\n");
29     }
30 
31     return 0;
32 }

实验四:

 1 #include <stdio.h>
 2 #define N 80
 3 
 4 void replace(char *str, char old_char, char new_char); 
 5 
 6 int main() {
 7     char text[N] = "Programming is difficult or not, it is a question.";
 8 
 9     printf("原始文本: \n");
10     printf("%s\n", text);
11 
12     replace(text, 'i', '*'); 
13 
14     printf("处理后文本: \n");
15     printf("%s\n", text);
16 
17     return 0;
18 }
19 
20 
21 void replace(char *str, char old_char, char new_char) {
22     int i;
23 
24     while(*str) {
25         if(*str == old_char)
26             *str = new_char;
27         str++;
28     }
29 }

8bc0724973c24ce22376e27bedd78977

问题一:将字符串中的某个字符用另一个字符替代

问题二:可以

实验五:

 1 #include <stdio.h>
 2 #define N 80
 3 
 4 char *str_trunc(char *str, char x);
 5 
 6 int main() {
 7     char str[N];
 8     char ch;
 9 
10     while(printf("输入字符串: "), gets(str) != NULL) {
11         printf("输入一个字符: ");
12         ch = getchar();
13 
14         printf("截断处理...\n");
15         str_trunc(str, ch);         // 函数调用
16 
17         printf("截断处理后的字符串: %s\n\n", str);
18         getchar();
19     }
20 
21     return 0;
22 }
23 
24 // 函数str_trunc定义
25 // 功能: 对字符串作截断处理,把指定字符自第一次出现及其后的字符全部删除, 并返回字符串地址
26 // 待补足...
27 // xxx
28 char *str_trunc(char *str,char x){
29     char *p = str;
30     while (*p != '\0') {
31         if (*p == x) {
32             *p = '\0'; 
33             break;      
34         }
35         p++;  
36     }
37     return str;  
38 }

05725343e9c360f059762dde46ec1e78

问题:第二次输入时输入不了字符串 这里getchar的作用是将回车键回收以防被当作第二次输入的字符串

实验六:

 

 1 #include <stdio.h>
 2 #include <string.h>
 3 #define N 5
 4 
 5 int check_id(char *str); // 函数声明
 6 
 7 int main()
 8 {
 9     char *pid[N] = {"31010120000721656X",
10                     "3301061996X0203301",
11                     "53010220051126571",
12                     "510104199211197977",
13                     "53010220051126133Y"};
14     int i;
15     for (i = 0; i < N; ++i)
16         if (check_id(pid[i])) // 函数调用
17             printf("%s\tTrue\n", pid[i]);
18         else
19             printf("%s\tFalse\n", pid[i]);
20     return 0;
21 }
22 
23 // 函数定义
24 // 功能: 检查指针str指向的身份证号码串形式上是否合法
25 // 形式合法,返回1,否则,返回0
26 int check_id(char *str) {
27     int i;
28     if (strlen(str) != 18) 
29         return 0;
30     for (i = 0; i < 17; i++) 
31     {
32         if (str[i] < '0' || str[i] > '9') {
33             return 0;
34         }
35     }
36     if ((str[17] >= '0' && str[17] <= '9') || str[17] == 'X') {
37         return 1;
38     } 
39     else 
40         return 0;
41 }

实验七:

 1 #include <stdio.h>
 2 #define N 80
 3 void encoder(char *str, int n); // 函数声明
 4 void decoder(char *str, int n); // 函数声明
 5 
 6 int main() {
 7     char words[N];
 8     int n;
 9 
10     printf("输入英文文本: ");
11     gets(words);
12 
13     printf("输入n: ");
14     scanf("%d", &n);
15 
16     printf("编码后的英文文本: ");
17     encoder(words, n);      // 函数调用
18     printf("%s\n", words);
19 
20     printf("对编码后的英文文本解码: ");
21     decoder(words, n); // 函数调用
22     printf("%s\n", words);
23 
24     return 0;
25 }
26 
27 /*函数定义
28 功能:对str指向的字符串进行编码处理
29 编码规则:
30 对于a~z或A~Z之间的字母字符,用其后第n个字符替换; 其它非字母字符,保持不变
31 */
32 void encoder(char *str, int n) {
33     // 补足函数实现
34     // ×××
35     char *p=str;
36     while(*p!='\0'){
37     if(*p>=97&&*p<=122)
38     *p='a'+(*p-'a'+n)%26; 
39     if(*p>=65&&*p<=90)
40     *p='A'+(*p-'A'+n)%26;
41     p++;
42 }
43 }
44 
45 /*函数定义
46 功能:对str指向的字符串进行解码处理
47 解码规则:
48 对于a~z或A~Z之间的字母字符,用其前面第n个字符替换; 其它非字母字符,保持不变
49 */
50 void decoder(char *str, int n) {
51     // 补足函数实现
52     // ×××
53     char *p=str;
54     while (*p != '\0'){ 
55         if (*p>='a'&&*p<='z') 
56         *p='a'+(*p-'a'-n+26)%26;
57         if (*p>='A'&& *p<='Z') 
58         *p ='A'+(*p-'A'-n+26)%26;
59         p++; 
60     }
61 }

309fec8e44d3ac6f043888d34961819d

2221123ed47a105a93e02eca05199437

实验八:

 1 #include <stdio.h>
 2 #include <string.h>
 3 
 4 int main(int argc, char *argv[]) {
 5     int i, j;
 6     char *temp; 
 7     for(i=1;i<argc-1;++i) {
 8         for(j=1;j<argc-i;++j) {
 9             if(strcmp(argv[j], argv[j+1])>0){
10                 temp=argv[j];
11                 argv[j]=argv[j+1];
12                 argv[j+1]=temp;
13             }
14         }
15     }
16     for(i=1;i<argc;++i){
17         printf("hello,%s\n",argv[i]);
18     }
19     return 0;
20 }

 

posted @ 2025-12-08 19:48  陆绎  阅读(2)  评论(0)    收藏  举报