码迷,mamicode.com
首页 > 其他好文 > 详细

校招笔试题编程技巧总结

时间:2017-09-09 00:46:44      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:else   alt   closed   span   put   sed   color   isp   while   

技巧一://统计字符串s1的频率

技术分享
    String s1 = in.nextLine();
//统计字符串s1的频率
        for (char c1 : s1.toCharArray()) {
            if (hashMap1.containsKey(c1)) {
                hashMap1.put(c1, hashMap1.get(c1) + 1);
            } else {
                hashMap1.put(c1, 1);
            }
        }
View Code

技巧二:输入判断加 hasNext()

技术分享
 Scanner scan=new Scanner(System.in);
        while(scan.hasNext()){
            String str1=scan.nextLine();
            String str2=scan.nextLine();
            boolean result=isContain(str1,str2);
            if(result){
                System.out.println("Yes");
            }else{
                System.out.println("No");
            }
        }
        scan.close();
View Code

 

校招笔试题编程技巧总结

标签:else   alt   closed   span   put   sed   color   isp   while   

原文地址:http://www.cnblogs.com/hezhiyao/p/7496881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!