题解 | #整型数组合并#

整型数组合并

http://www.nowcoder.com/practice/c4f11ea2c886429faf91decfaf6a310b

/**
 审题:数组升序合并、过滤重复元素 (很明显这是考察 TreeSet 的用法)
 TreeSet 的性质:有序、不重复
 **/

import java.util.*;
public  class  Main {
    public static  void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        while(sc.hasNext()){
            Set<Long> set = new TreeSet<>();
          //接收第一个整形数组大小
            int size1 = sc.nextInt();
            for (int i = 0; i < size1; i++) {
                set.add(sc.nextLong()); //将该组的整数按数组大小循环添加进 set
            }
          //接收第一个整形数组大小
            int size2 = sc.nextInt();
            for (int i = 0; i < size2; i++) {
                set.add(sc.nextLong());
            }
          //遍历输出
            for (long n : set) {
            System.out.print(n);
            }
          /*
          注意:测试案例会以 两个整形数组 为一组测试用例, 并可能输入多组
          要记得组与组的结果之间换行
          */
            System.out.println();
        }

    }
}
全部评论

相关推荐

11-22 16:49
已编辑
北京邮电大学 Java
美团 质效,测开 n*15.5
点赞 评论 收藏
分享
10-09 22:05
666 C++
找到工作就狠狠玩CSGO:报联合国演讲,报电子烟设计与制造
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务