2020-12-31课堂总结+2020-12-26作业总结

  1. 删除第一次出现关键字为key的节点

    /**
     * 找到关键key的前驱,如果有返回前驱节点的引用
     * 如果没有返回null
     * @param key
     * @return
     */
    public Node searchPrev(int key) {
        Node cur = this.head;

        while (cur.next != null) {
            if(cur.next.val == key) {
                return cur;
            }
            cur = cur.next;
        }
        return null;//代表没有要删除的key值的前驱
    }
    public void remove(int key) {
        if(this.head == null) {
            return;
        }
        if(this.head.val == key) {
            this.head = this.head.next;
            return;
        }
        //正常的进行删除
        Node prev = searchPrev(key);
        if(prev == null) {
            System.out.println("没有这个key的前驱");
        }else {
            Node del = prev.next;
            prev.next = del.next;
        }
    }
  1. 删除所有值为key的节点
 public void removeAllKey(int key){
        Node prev = this.head;
        Node cur = prev.next;
        while (cur != null) {
            if(cur.val == key) {
                prev.next = cur.next;
            }else {
                prev = cur;
            }
            cur = cur.next;
        }
        if(this.head.val == key) {
            this.head = this.head.next;
        }
    }
  1. 已知如下类说明:
public class Test{
  private float f=1.0f;
  int m=12;
  static int n=1;
  public static void main(String args[]){
    Test t=new Test();
  }
}

如下哪些使用是正确的()
题目内容:
A.t.f = 1.0
纠正:此处1.0为double类型,赋值需要改为1.0f
B.this.n
纠正:n为静态变量,不依赖对象,this是当前对象的引用
C.Test.m
纠正:m不是静态变量,无法访问
D.Test.n
正确

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值