博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第三次作业
阅读量:5961 次
发布时间:2019-06-19

本文共 5974 字,大约阅读时间需要 19 分钟。

要求二

6-1 输出月份英文名

本题要求实现函数,可以返回一个给定月份的英文名称。

函数接口定义:

char *getmonth( int n );

函数getmonth应返回存储了n对应的月份英文名称的字符串头指针。如果传入的参数n不是一个代表月份的数字,则返回空指针NULL。

裁判测试程序样例:

#include 
char *getmonth( int n );int main(){ int n; char *s; scanf("%d", &n); s = getmonth(n); if ( s==NULL ) printf("wrong input!\n"); else printf("%s\n", s); return 0;}/* 你的代码将被嵌在这里 */

输入样例1:

5

输出样例1:

May

输入样例2:

15

输出样例2:

wrong input!

设计思路

1.定义指针数组*month[12]来存放月份的对应英文2.通过形参n的值来判断是否为正确月份,若为正确月份,则返回对应地址,否则返回NULL

实验代码

char *getmonth( int n ){        char *month[12]={"January","February","March","April","May","June","July","August","September","October","November","December"};        if(n>=1&&n<=12)        return month[n-1];        else        return NULL;}

错误信息:虽然能通过编译并且能通过PTA,但实际上在内存分配上是由一定问题的,在子函数运行结束后,该指针数组的空间会被释放

错误改正:原题中无改正,但实际应申请动态空间

6-2 查找星期

本题要求实现函数,可以根据下表查找到星期,返回对应的序号。

序号 星期
0 Sunday
1 Monday
2 Tuesday
3 Wednesday
4 Thursday
5 Friday
6 Saturday

函数接口定义:

int getindex( char *s );

函数getindex应返回字符串s序号。如果传入的参数s不是一个代表星期的字符串,则返回-1。
裁判测试程序样例:

#include 
#include
#define MAXS 80int getindex( char *s );int main(){ int n; char s[MAXS]; scanf("%s", s); n = getindex(s); if ( n==-1 ) printf("wrong input!\n"); else printf("%d\n", n); return 0;}/* 你的代码将被嵌在这里 */

输入样例1:

Tuesday

输出样例1:

2

输入样例2:

today

输出样例2:

wrong input!

设计思路

1.建立字符串指针数组day[7]储存对应星期英文2.遍历day,若字符串匹配则返回对应下标3.若未找到相匹配字符串则返回-1

实验代码

int getindex( char *s ){    char *day[7]={"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};    int i;    for(i=0;i<7;i++)    {        if(strcmp(s,*(day+i))==0)        return i;    }    return -1;}

错误信息:字符串匹配过程中出错

错误解决:使用strcmp函数来实现字符串的匹配

6-3 计算最长的字符串长度

本题要求实现一个函数,用于计算有n个元素的指针数组s中最长的字符串的长度。

函数接口定义:
int max_len( char *s[], int n );
其中n个字符串存储在s[]中,函数max_len应返回其中最长字符串的长度。

裁判测试程序样例:

#include 
#include
#include
#define MAXN 10#define MAXS 20int 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;}/* 你的代码将被嵌在这里 */

输入样例:

4blueyellowredgreen

输出样例:

6

设计思路

1.定义一个整型变量length来存放当前字符串的长度2.遍历该指针数组,若有长度大于length的字符串,则将当前长度赋值给length3.返回length

实验代码

int max_len( char *s[], int n ){    int i,length;    length=strlen(*s);    for(i=0;i
length) length=strlen(*(s+i)); } return length;}

错误信息:暂无错误

6-4 指定位置输出字符串

本题要求实现一个函数,对给定的一个字符串和两个字符,打印出给定字符串中从与第一个字符匹配的位置开始到与第二个字符匹配的位置之间的所有字符。

函数接口定义:

char *match( char *s, char ch1, char ch2 );

函数match应打印s中从ch1ch2之间的所有字符,并且返回ch1的地址。

裁判测试程序样例:

#include 
#define MAXS 10char *match( char *s, char ch1, char ch2 );int main(){ char str[MAXS], ch_start, ch_end, *p; scanf("%s\n", str); scanf("%c %c", &ch_start, &ch_end); p = match(str, ch_start, ch_end); printf("%s\n", p); return 0;}/* 你的代码将被嵌在这里 */

输入样例1:

programr g

输出样例1:

rogrogram

输入样例2:

programz o

输出样例2:

(空行)(空行)

输入样例3:

programg z

输出样例3:

gramgram

设计思路

1.遍历该数组,尝试查找ch1,若找到ch1,则执行2.,否则返回该字符串最后的'\0'2.记录ch1的位置,遍历剩下元素,尝试查找ch2,找到ch2之前,输出遍历过的每一个字符;当找到ch2时,按格式输出,并返回ch1的位置3.若没找到ch2,则按格式输出,并返回ch1的位置4.

实验代码

char *match( char *s, char ch1, char ch2 ){        int i=0,j=0,k=0,x=0;      char *p=NULL;      x = strlen(s);      for(i=0;i

错误信息1:输出出现遗漏第一个相匹配的字符

错误改正:指针的初值赋值为NULL
错误信息2:答案不符
错误分析:遍历数组都未找到ch1时,返回主函数的指针为空;但主函数中的输出是以字符串的形式输出,即是以'\0'为结尾的数组;当返回值为空时,主函数无法正常输出字符串
错误改正:最后将该指针指向的位置的值为'\0'即可

6-1 奇数值结点链表

本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中奇数值的结点重新组成一个新的链表。链表结点定义如下:

struct ListNode {    int data;    ListNode *next;};

函数接口定义:

struct ListNode *readlist();struct ListNode *getodd( struct ListNode **L );

函数readlist从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。

函数getodd将单链表L中奇数值的结点分离出来,重新组成一个新的链表。返回指向新链表头结点的指针,同时将L中存储的地址改为删除了奇数值结点后的链表的头结点地址(所以要传入L的指针)。

裁判测试程序样例:

#include 
#include
struct ListNode { int data; struct ListNode *next;};struct ListNode *readlist();struct ListNode *getodd( struct ListNode **L );void printlist( struct ListNode *L ){ struct ListNode *p = L; while (p) { printf("%d ", p->data); p = p->next; } printf("\n");}int main(){ struct ListNode *L, *Odd; L = readlist(); Odd = getodd(&L); printlist(Odd); printlist(L); return 0;}/* 你的代码将被嵌在这里 */

输入样例:

1 2 2 3 4 5 6 7 -1

输出样例:

1 3 5 7 2 2 4 6

设计思路

1.创建链表2.定义结构体指针`*oddhead``*oddtail``*newhead``*newtail``*p`,令p=*L3.遍历链表,若为第一个奇数,则赋值给oddhead,并向下建立链表;同理建立偶数链表newhead4.将两链表的结尾处指向NULL5.新的偶数链表头newhead赋值给*L,返回oddhead

实验代码

struct ListNode *readlist(){    struct ListNode *p=NULL,*head=NULL,*tail=NULL;    int date;    scanf("%d",&date);    while(date!=-1)    {           p=(struct ListNode *)malloc(sizeof(struct ListNode));        p->data=date,p->next=NULL;        if(head==NULL)        {            head=p,tail=p;        }        else        {            tail->next=p;            tail=p;        }        scanf("%d",&date);    }    return head;}struct ListNode *getodd( struct ListNode **L ){    struct ListNode *oddhead=NULL,*oddtail=NULL,*newhead=NULL,*newtail=NULL,*p=*L;    while(p!=NULL)    {        if((p->data)%2!=0)        {            if(oddhead==NULL)            {                oddhead=p;                oddtail=p;            }            else            {                oddtail->next=p;                oddtail=p;            }        }        if((p->data)%2==0)        {            if(newhead==NULL)            {                newhead=p;                newtail=p;            }            else            {                newtail->next=p;                newtail=p;            }        }        p=p->next;    }    if(oddtail->next!=NULL)    oddtail->next=NULL;    if(newtail->next!=NULL)    newtail->next=NULL;    *L=newhead;    return oddhead;}

错误信息:位置段错误

错误改正:暂无改正

总结分析

数组指针的使用方便了关于字符串的调用和传递;链表类知识点尚未能完全理解

转载于:https://www.cnblogs.com/cty-1/p/8926064.html

你可能感兴趣的文章
ES 6大纲总结——Iterator 和 for...of 循环
查看>>
Python通用编程 - 第一章:用户交互
查看>>
浮动 二 文字围绕现象(中)
查看>>
Java 集合系列01之 总体框架
查看>>
有必要学习数据结构和算法吗?
查看>>
比特币(3)
查看>>
容器,类型转换。List。
查看>>
Hadoop 面试,有它就够了
查看>>
阿里云前端周刊 - 第 21 期
查看>>
React Native学习(二)---配置IDE
查看>>
Vue $nextTick 两种写法的差异
查看>>
传说中的git到底怎么搞?安装、文件修改管理等
查看>>
goreplay 使用教程
查看>>
Block
查看>>
for in,Object.keys,for of 的区别
查看>>
结构型设计模式之桥接模式
查看>>
深入理解nodejs Stream模块
查看>>
java版spring cloud+spring boot+redis多租户社交电子商务平台:服务消费(Feign)
查看>>
ios手机QQ无发改变title问题
查看>>
深入理解ES6 ---- 正则扩展
查看>>