C/C++知识点之Symmetric Order C语言 ZOJ2172
小标 2018-11-12 来源 : 阅读 1076 评论 0

摘要:本文主要向大家介绍了C/C++知识点之Symmetric Order C语言 ZOJ2172,通过具体的内容向大家展示,希望对大家学习C/C++知识点有所帮助。

本文主要向大家介绍了C/C++知识点之Symmetric Order C语言 ZOJ2172,通过具体的内容向大家展示,希望对大家学习C/C++知识点有所帮助。

In your job at Albatross Circus Management (yes, it‘s run by a bunch of clowns), you have just finished writing a program whose output is a list of names in nondescending order by length (so that each name is at least as long as the one preceding it). However, your boss does not like the way the output looks, and instead wants the output to appear more symmetric, with the shorter strings at the top and bottom and the longer strings in the middle. His rule is that each pair of names belongs on opposite ends of the list, and the first name in the pair is always in the top part of the list. In the first example set below, Bo and Pat are the first pair, Jean and Kevin the second pair, etc.

Input
The input consists of one or more sets of strings, followed by a final line containing only the value 0. Each set starts with a line containing an integer, n, which is the number of strings in the set, followed by n strings, one per line, sorted in nondescending order by length. None of the strings contain spaces. There is at least one and no more than 15 strings per set.  Each string is at most 25 characters long. 
Output
For each input set print "SET n" on a line, where n starts at 1, followed by the output set as shown in the sample output.

Example input:
Example output:

 7 Bo Pat Jean Kevin Claude William Marybeth 6 Jim Ben Zoe Joey Frederick Annabelle 5 John Bill Fran Stan Cece 0 
 SET 1 Bo Jean Claude Marybeth William Kevin Pat SET 2 Jim Zoe Frederick Annabelle Joey Ben SET 3 John Fran Cece Stan Bill 

这道题可以按输入的名字是奇数个还是偶数个分别处理,注意在读入人名的个数后要去掉换行符。

 1 #include 
 2 #include 
 3 #include 
 4 
 5 int main(void){
 6     int n;//人名数量
 7     int i=1;//SET数
 8     int j;//用于循环
 9     char **name,t;//名字的二维数组的指针
10     while(scanf("%d",&n)==1){
11         scanf("%c",&t);//读入换行符 
12         if(n==0) break;
13         else{
14             name=(char**)malloc(n*sizeof(char*));
15             for(j=0;j<n;j++) name[j]=(char*)malloc(26*sizeof(char));
16             for(j=0;j<n;j++) gets(name[j]);
17             printf("SET %d\n",i++);//SET数加一 
18             //按奇、偶分别输出 
19             if(n%2==0){
20                 for(j=0;j<n;j+=2) puts(name[j]);
21                 for(j=n-1;j>0;j-=2) puts(name[j]);
22             }else{
23                 for(j=0;j<n;j+=2) puts(name[j]);
24                 for(j=n-2;j>0;j-=2) puts(name[j]);
25             }
26         }
27         for(j=0;j<n;j++) free(name[j]);
28         free(name);
29     }
30     return 0;
31 }

View Code

本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注职坐标编程语言C/C+频道!

本文由 @小标 发布于职坐标。未经许可,禁止转载。
喜欢 | 0 不喜欢 | 0
看完这篇文章有何感觉?已经有0人表态,0%的人喜欢 快给朋友分享吧~
评论(0)
后参与评论

您输入的评论内容中包含违禁敏感词

我知道了

助您圆梦职场 匹配合适岗位
验证码手机号,获得海同独家IT培训资料
选择就业方向:
人工智能物联网
大数据开发/分析
人工智能Python
Java全栈开发
WEB前端+H5

请输入正确的手机号码

请输入正确的验证码

获取验证码

您今天的短信下发次数太多了,明天再试试吧!

提交

我们会在第一时间安排职业规划师联系您!

您也可以联系我们的职业规划师咨询:

小职老师的微信号:z_zhizuobiao
小职老师的微信号:z_zhizuobiao

版权所有 职坐标-一站式IT培训就业服务领导者 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
 沪公网安备 31011502005948号    

©2015 www.zhizuobiao.com All Rights Reserved

208小时内训课程