字符串排序1

字符串排序(1)

http://www.nowcoder.com/questionTerminal/251845265711496da75c59126725f76b

import java.util.*;
public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNextLine()) {
            int n=Integer.parseInt(sc.nextLine());
            String[] s=sc.nextLine().split(" ");
            TreeSet<String> set=new TreeSet<String>();
            for(int i=0;i<s.length;i++){
                set.add(s[i]);
            }
            for(String str:set){
                System.out.print(str+" ");
            }
        }

    }
}
全部评论

相关推荐

10-11 17:30
湖南大学 C++
我已成为0offer的糕手:羡慕
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务