校招笔试题编程技巧总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了校招笔试题编程技巧总结相关的知识,希望对你有一定的参考价值。

技巧一://统计字符串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

 

以上是关于校招笔试题编程技巧总结的主要内容,如果未能解决你的问题,请参考以下文章

百度2015校招笔试题(头巾问题)

微软2017校招笔试题2 composition

网易2017年校招笔试题 最大的奇约数

微软2017校招笔试题3 registration day

新浪微博2020Java校招笔试题

校招笔试题