2022年7月26日
摘要: //删除链表中第index(o-based)个位置的元素,返回删除的全速 //在链表中不是一个常用的操作,练习用:) public E remove(int index) { if (index < 0 || index > size) throw new IllegalArgumentExcept 阅读全文
posted @ 2022-07-26 21:50 网恋被骗两千八 阅读(40) 评论(0) 推荐(0) 编辑
摘要: public class LinkedList<E> { private class Node { public E e; public Node next; public Node(E e, Node next) { this.e = e; this.next = next; } public N 阅读全文
posted @ 2022-07-26 21:31 网恋被骗两千八 阅读(81) 评论(0) 推荐(0) 编辑