一.编程题
1 2 3 4 5 6 7 8 9
那么取值的话: 1 8 9
2 6 7
3 4 5
关系式得到是:中间数的那个下标值
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();