JAVA方向笔试强训-day1

一.编程题 

组队竞赛_牛客笔试题_牛客网 (nowcoder.com)

1 2 3 4 5 6 7 8 9

那么取值的话:  1  8  9

                           2  6  7

                           3  4  5

f3843aae9d2b4c5d97d0178625ce94e6.png

关系式得到是:中间数的那个下标值 


public class Study {
    public static void main(String[] args) {
        Scanner scanner=new Scanner(System.in);
        int n=scanner.nextInt();
        int[]array=new int[n*3];
        for (int i = 0; i < 3*n; i++) {
            array[i]=scanner.nextInt();
        }
        Array.sort(array);
        int sum=0;
        for (int i = 0; i < n; i++) {
            sum+=array[array.length-(2*(i+1))];

        }
        System.out.println(sum);
    }


}

删除公共字符_牛客题霸_牛客网 (nowcoder.com)

1.s1 :原字符串 s2  they are student :需要删除的字符集 aeiou 

2.把需要删除的字符集映射到HashMap中

3.遍历s1查找map中是否包含该字符,若是不包含则说明这是不需要删除的-于是append()

public class Study {
    public static void main(String[] args) {
        Scanner scanner=new Scanner(System.in);
        String s1=scanner.nextLine();//
        String s2=scanner.nextLine();//需要删除的字符串集
        HashMap<Character,Integer> hashMap=new HashMap<>();
        for (int i = 0; i <s2.length() ; i++) {
            if (hashMap.get(s1.charAt(i))==null){//返回key对应的value值
                hashMap.put(s2.charAt(i),1);
            }else{
                hashMap.put(s2.charAt(i),hashMap.get(s1.charAt(i))+1);
            }
        }
        StringBuilder ret=new StringBuilder();

        for (int i = 0; i < s1.length(); i++) {
            if (!hashMap.containsKey(s1.charAt(i))){
               ret.append(s1.charAt(i));
            }
        }
        System.out.println(ret);
    }


}

二.选择题错题 

1. 已知如下类定义:
class Base {
public Base (){
//...
}
public Base ( int m ){
//...
}
public void fun( int n ){
//...
}
}
public class Child extends Base{
// member methods
}
如下哪句可以正确地加入子类中?

A private void fun( int n ){ //...}
B void fun ( int n ){ //... }
C protected void fun ( int n ) { //... }
D public void fun ( int n ) { //... }

考点:子类覆盖父类的方法 ——覆盖的规则

1.参数必须一样,且返回类型必须兼容

2.不能降低方法的存取权限——子类方法存取权限必须>=父类

2.假设 A 类有如下定义,设 a 是 A 类的一个实例,下列语句调用哪个是错误的?()
public class A
{
public int i;
static String s;
void method1(){}
static void method2(){}
}
A System.out.println(a.i);
B a.method1();
C A.method1();//通过类名调用非静态方法
D A.method2();

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值