第十二周作业
本周作业头
| 这个作业属于哪个课程 | C语言程序设计II | 
|---|---|
| 这个作业要求在哪里 | https://edu.cnblogs.com/campus/zswxy/computer-scienceclass1-2018/homework/3238 | 
| 我在这个课程的目标是 | 学会c语言,能用其编写出实用程序 | 
| 这个作业在那个具体方面帮助我实现目标 | 指针进阶(二级指针的概念,指针与函数的关系) | 
| 参考文献 | 《 C语言程序设计II》 | 
编程题一
6-1 计算最长的字符串长度 (15 分)
本题要求实现一个函数,用于计算有n个元素的指针数组s中最长的字符串的长度。
函数接口定义:
int max_len( char *s[], int n );
其中n个字符串存储在s[]中,函数max_len应返回其中最长字符串的长度。
裁判测试程序样例:
···
include <stdio.h>
include <string.h>
include <stdlib.h>
define MAXN 10
define MAXS 20
int max_len( char *s[], int n );
int main()
{
int i, n;
char *string[MAXN] = {NULL};
scanf("%d", &n);
for(i = 0; i < n; i++) {
    string[i] = (char *)malloc(sizeof(char)*MAXS);
    scanf("%s", string[i]);
}
printf("%d\n", max_len(string, n));
return 0;
}
···
/* 你的代码将被嵌在这里 */
输入样例:
4
blue
yellow
red
green
输出样例:
6
实验代码:
···
int max_len( char *s[], int n ){
int max=0;
int i,j;
for(i=0;i<n;i++){
if(strlen(s[max])<strlen(s[i])){
max=i;
}
}
return strlen(s[max]);
}
···
设计思路:

本题调试过程遇到的问题及解决办法:
本题实在是没有问题,之前有过类似的题目
运行结果:

6-2 统计专业人数 (15 分)
本题要求实现一个函数,统计学生学号链表中专业为计算机的学生人数。链表结点定义如下:
struct ListNode {
char code[8];
struct ListNode *next;
};
这里学生的学号共7位数字,其中第2、3位是专业编号。计算机专业的编号为02。
函数接口定义:
int countcs( struct ListNode *head );
其中head是用户传入的学生学号链表的头指针;函数countcs统计并返回head链表中专业为计算机的学生人数。
裁判测试程序样例:
···
include <stdio.h>
include <stdlib.h>
include <string.h>
struct ListNode {
char code[8];
struct ListNode *next;
};
struct ListNode createlist(); /裁判实现,细节不表*/
int countcs( struct ListNode *head );
int main()
{
struct ListNode  *head;
head = createlist();
printf("%d\n", countcs(head));
return 0;
}
···
/* 你的代码将被嵌在这里 */
输入样例:
1021202
2022310
8102134
1030912
3110203
4021205
输出样例:
3
实验代码:
复制代码
···
1 int countcs( struct ListNode *head )
2 {
3     int sum=0;
4
5     while(head!=NULL)
6     {
7         if(head->code[1]'0'&&head->code[2]'2')
8         {
9             sum++;
10         }
11
12         head=head->next;
13     }
14     return sum;
15 }
···
设计思路:

本题调试过程遇到的问题及解决办法:
问题:while括号里面的判断条件写错了
解决的办法:把判断条件应该为head>0
运行结果:

6-3 删除单链表偶数节点 (20 分)
本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中偶数值的结点删除。链表结点定义如下:
struct ListNode {
int data;
struct ListNode *next;
};
函数接口定义:
struct ListNode *createlist();
struct ListNode *deleteeven( struct ListNode *head );
函数createlist从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。
函数deleteeven将单链表head中偶数值的结点删除,返回结果链表的头指针。
裁判测试程序样例:
···
include <stdio.h>
include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *createlist();
struct ListNode *deleteeven( struct ListNode *head );
void printlist( struct ListNode *head )
{
struct ListNode *p = head;
while (p) {
printf("%d ", p->data);
p = p->next;
}
printf("\n");
}
int main()
{
struct ListNode *head;
head = createlist();
head = deleteeven(head);
printlist(head);
return 0;
}
···
/* 你的代码将被嵌在这里 */
输入样例:
1 2 2 3 4 5 6 7 -1
输出样例:
1 3 5 7
实验代码:
···
1 struct ListNode createlist()
2 {
3    int n;
4
5   struct ListNode head,tail,p;
6
7   head=(struct ListNode)malloc(sizeof(struct ListNode));
8   head->next=NULL;
9   tail=head;
10
11   while(1)
12  {
13     p=(struct ListNode)malloc(sizeof(struct ListNode));
14     p->next=NULL;
15
16     scanf("%d",&n);
17
18    if(n-1)
19   {
20     break;
21   }
22
23     p->data=n;
24     p->next=NULL;
25     tail->next=p;
26     tail=p;
27  }
28
29   return head;
30 }
31
32 struct ListNode *deleteeven( struct ListNode *head )
33 {
34   struct ListNode p,p2;
35   int flag;
36
37    p=head;
38    p2=p->next;
39    while(p->next)
40   {
41     flag=0;
42       if(p2->data%20)
43       {
44          p->next=p2->next;
45          p2=p2->next;
46          flag=1;
47        }
48       if(flag==0)
49      {
50         p=p->next;
51         p2=p->next;
52      }
53    }
54
55   return head->next;
56 }
···
设计思路:

本题调试过程遇到的问题及解决办法:
当时看到这个题目,真心一头雾水,好不容易懂点题意了,却一直编译错误
后来有大佬指导,是函数调用这块出现了问题
运行结果:

预习作业:
还未开始讨论,所涉及的领域太强。需要大佬的帮助和支持 !
 
                    
                
 
 
                
            
         浙公网安备 33010602011771号
浙公网安备 33010602011771号