c语音题目 查找最长的单词怎么编写
程序编写要求:用动态分配的方式处理多个字符串的输入,用指针数组组织这些字符串。
测试程序为:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int read_color(char **color);
char **find_max_len(const char **s, int n);
int main()
{
int n; //字符串个数
char *color[150], **ans;
n = read_color(color); //读入字符串,并把字符串的首地址存入指针数组color[],返回数组的长度
ans = find_max_len(color, n); //查找最长的单词,返回指向第一个最长单词的指针数组元素的指针
printf("%s\n", *ans);
return 0;
}
/*你的代码将被嵌入到这里 */
Input Description
输入有多行,每行一个有关颜色的英文单词,输入#时结束。
Output Description
在一行中输出第一个最长的单词。
Sample Input
blue
red
yellow
green
purple
#
Sample Output
yellow
Source/Category
C语言实验-指针高级应用 展开
按照题目指定的要求,编写两个函数,一个函数用来读入表示颜色的字符串以井字号做术,另外一个函数就是在已有的字符串数组中查找长度最长的那个字符串。下面是代码和运行的截图。
#include
#include
#include
int read_color(char **color);
char **find_max_len(const char **s, int n);
int main()
{ int n; //字符串个数
char *color[150], **ans;
n = read_color(color); //读入字符串,并把字符串的首地址存入指针数组color[],返回数组的长度
ans = find_max_len(color, n); //查找最长的单词,返回指向第一个最长单词的指针数组元素的指针
printf("%s\n", *ans);
return 0;
}
int read_color(char **color)
{ int i=0;
do
{ color[i]=(char*)malloc(150);
scanf("%s",color[i]);
}
while(strcmp(color[i++],"#"));
return i;
}
char **find_max_len(const char **s, int n)
{int i,max=0;
for(i=1;i<n;i++)
if(strlen(s[i])>strlen(s[max]))max=i;
return &s[max];
}