单向链表+反转链表
单向链表是链表的一种,它由多个结点组成,每个结点都由一个数据域和一个指针域组成,数据域用来存储数据,指针域用来指向其后继结点。链表的头结点的数据域不存储数据,指针域指向第一个真正存储数据的结点。
单向链表API设计:
方法名 | 方法作用 |
---|---|
public void clear() | 空置线性表 |
publicboolean isEmpty() | 判断线性表是否为空,是返回true,否返回false |
public int length() | 获取线性表中元素的个数 |
public T get(int i) | 读取并返回线性表中的第i个元素的值 |
public void insert(T t) | 往线性表中添加一个元素 |
public void insert(int i,T t) | 在线性表的第i个元素之前插入一个值为t的数据元素 |
.public T remove(int i) | 删除并返回线性表中第i个数据元素 |
public int indexOf(T t) | 返回线性表中首次出现的指定的数据元素的位序号,若不存在,则返回-1 |
链表反转API
public void reverse():对整个链表反转
public Node reverse(Node curr):反转链表中的某个结点curr,并把反转后的curr结点返回使用递归可以完成反转,递归反转其实就是从原链表的第一个存数据的结点开始,依次递归调用反转每一个结点,直到把最后一个结点反转完毕,整个链表就反转完毕
/**
* 单向链表(包含反转链表)
*/
public class LinkList<T> implements Iterable<T> {
// 记录首结点
private Node head;
// 记录链表的长度
private int N;
public LinkList() {
// 初始化头结点
head = new Node(null, null);
// 初始化元素个数
N = 0;
}
// 清空链表
public void clear() {
head.next = null;
N = 0;
}
// 获取链表的长度
public int length() {
return N;
}
// 判断链表是否为空
public boolean isEmpty() {
return N == 0;
}
// 获取指定位置i处的元素
public T get(int i) {
// 通过循环从头结点开始往后找,依次找i次即可找到对应的元素
Node n = head;
for (int index = 0; index <= i; index++) {
n = n.next;
}
return n.item;
}
// 向链表中添加元素t(尾插法)
public void insert(T t) {
Node n = head;
// 找到当前最后一个结点
while (n.next != null) {
n = n.next;
}
// 创建新结点,保存元素t
Node newNode = new Node(t, null);
// 让当前最后一个结点指向新结点
n.next = newNode;
// 元素个数+1
N++;
}
// 向指定位置i处,添加元素t
public void insert(int i, T t) {
// 找到i位置的前一个结点
Node pre = head;
for (int index = 0; index <= i - 1; index++) {
pre = pre.next;
}
// 找到i位置的结点
Node curr = pre.next;
// 创建新节点,保存数据t,并指向原来i位置的结点
Node newNode = new Node(t, curr);
// 原来i位置的前一个结点指向新的结点
pre.next = newNode;
// 元素个数+1
N++;
}
// 删除指定位置i处的元素,并返回被删除的元素
public T remove(int i) {
// 找到i位置的前一个结点
Node pre = head;
for (int index = 0; index <= i - 1; i++) {
pre = pre.next;
}
// 找到i位置的结点(此步是为了返回值)
Node curr = pre.next;
// 让i位置的前一个结点指向i位置的下一个结点
pre.next = curr.next;
// 元素个数-1
N--;
return curr.item;
}
// 查找元素t在链表中第一次出现的位置
public int indexOf(T t) {
Node n = head;
// 从头结点开始查找,如果数据相同,返回索引值
for (int i = 0; n.next != null; i++) {
n = n.next;
if (n.item.equals(t)) {
return i;
}
}
return -1;
}
// 结点类
private class Node {
// 存储元素
T item;
// 指向下一个结点
Node next;
public Node(T item, Node next) {
this.item = item;
this.next = next;
}
}
@Override
public Iterator<T> iterator() {
return new LIterator();
}
private class LIterator implements Iterator {
private Node n;
public LIterator() {
this.n = head;
}
@Override
public boolean hasNext() {
return n.next != null;
}
@Override
public Object next() {
n = n.next;
return n.item;
}
}
/**
* 反转链表--方法reverse()与reverse(Node curr)
*/
// 反转整个链表
public void reverse() {
// 判断当前列表是否为空,为空结束允许,不为空调用重载的reverse方法完成反转
if (isEmpty()) {
return;
}
// 反转链表
reverse(head.next);
}
// 反转指定的结点,并把反转后的结点返回
public Node reverse(Node curr) {
// 如果是最后一个结点,令首结点head的下一个结点变成最后一个结点
if (curr.next == null) {
head.next = curr;
return curr;
}
// 递归的反转当前结点curr的下一个结点,返回值就是链表反转后的当前结点的上一个结点
Node pre = reverse(curr.next);
// 让返回的结点的下一个结点变为当前结点curr
pre.next = curr;
// 让当前结点的next为null(若取消则反转后最后一个结点的next指向不为null)
curr.next = null;
return curr;
}
}