博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串按照字典序排列
阅读量:5037 次
发布时间:2019-06-12

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

题目描述

给定n个字符串,请对n个字符串按照字典序排列。 
输入描述:
输入第一行为一个正整数n(1≤n≤1000),下面n行为n个字符串(字符串长度≤100),字符串中只含有大小写字母。
输出描述:
数据输出n行,输出结果为按照字典序排列的字符串。
输入例子:
9captocatcardtwotooupboatboot 输出例子:
boatbootcapcardcattotootwoup
import java.util.*; public class Main {     public static void main(String[] args) {        Scanner sc = new Scanner(System.in);        while(sc.hasNext()){            int n = Integer.valueOf(sc.nextLine());            List
list = new ArrayList(); for(int i = 0; i < n; i++){ list.add(sc.nextLine()); } Collections.sort(list); Iterator iter = list.iterator(); while(iter.hasNext()){ System.out.println(iter.next()); } } sc.close(); }}

 

转载于:https://www.cnblogs.com/zywu/p/5807370.html

你可能感兴趣的文章
js 定时器
查看>>
iOS CoreAnimate 动画实现
查看>>
BZOJ5300 [Cqoi2018]九连环 【dp + 高精】
查看>>
BZOJ4036 [HAOI2015]按位或 【minmax容斥 + 期望 + FWT】
查看>>
splay tree 学习笔记
查看>>
NOIP2017 【游记】
查看>>
BZOJ1452 [JSOI2009]Count 【树套树 (树状数组)】
查看>>
spring源码:Aware接口
查看>>
lazyload的使用方法
查看>>
ingress 代理方式
查看>>
P3360 偷天换日
查看>>
【计算机网络】详解网络层(二)ARP和RARP
查看>>
javaweb常识
查看>>
Java注解
查看>>
时间>金钱
查看>>
元数据元素
查看>>
Visual Studio Code 构建C/C++开发环境
查看>>
web自己主动保存表单
查看>>
lua基金会【五岁以下儿童】I/O文件操作
查看>>
一个小的日常实践——高速Fibonacci数算法
查看>>