(1)节点类
(2)链表类
(3)测试结果
采用头插法的链表是:4 3 2 1 长度为4
添加一个节点:hello 4 3 2 1 长度为5
查找节点:链表中第1节点的值是:hello
删除添加的节点4 3 2 1 长度为4
采用尾插法的链表是:1 2 3 4 长度为4
添加一个节点:hello 1 2 3 4 长度为5
查找节点:链表中第1节点的值是:hello
删除添加的节点1 2 3 4 长度为4
public class Node {
private Object data;// 数据区
private Node next; // 节点区
// 构造方法
public Node(Object data, Node next) {
this.data = data;
this.next = next;
}
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
}
public Node getNext() {
return next;
}
public void setNext(Node next) {
this.next = next;
}
}
(2)链表类
public class LinkedList {
private Node head; // 头结点
private int length; // 长度
// 构造方法
public LinkedList() {
head = new Node(null, null);
length = 0;
}
// 头插法(顺序相反)
public void addHead(Object item) {
Node node = new Node(item, null);
node.setNext(head.getNext());
head.setNext(node);
length++;
}
// 尾插法
public void addTail(Object item) {
Node node = new Node(item, null);
Node temp = head;
// 找到尾节点
while (null != temp.getNext()) {
temp = temp.getNext();
}
temp.setNext(node);
length++;
}
// 在指定位置添加节点
public void addIndex(Object item, int index) {
Node node = new Node(item, null);
Node temp = head;
// 找到要插入节点的前一个节点
for (int i = 0; i < index - 1; i++) {
temp = temp.getNext();
}
node.setNext(temp.getNext());
temp.setNext(node);
length++;
}
// 查找指定位置的节点
public void find(int index) {
if (index < 1 | index > length) {
System.out.println("位置非法!");
}
Node temp = head;
for (int i = 0; i < index; i++) {
temp = temp.getNext();
}
System.out.println("链表中第" + index + "节点的值是:" + temp.getData());
}
// 删除
public void delete(int index) {
if (index < 1 | index > 5) {
System.out.println("位置非法!");
}
Node temp = head;
// 找到要删除节点的前一个节点
for (int i = 0; i < index - 1; i++) {
temp = temp.getNext();
}
length--;
temp.setNext(temp.getNext().getNext());
}
// 打印链表
public void prtn() {
Node temp = head.getNext(); // 指向第一个元素节点
while (null != temp) {
System.out.print(temp.getData() + " ");
temp = temp.getNext();
}
System.out.println("长度为" + length);
}
public static void main(String[] args) {
// 测试
LinkedList list = new LinkedList();
list.addHead(1);
list.addHead(2);
list.addHead(3);
list.addHead(4);
System.out.print("采用头插法的链表是:");
list.prtn();
System.out.println();
System.out.print("添加一个节点:");
list.addIndex("hello", 1);
list.prtn();
System.out.println();
System.out.print("查找节点:");
list.find(1);
System.out.println();
System.out.print("删除添加的节点");
list.delete(1);
list.prtn();
System.out.println();
// 测试
LinkedList list2 = new LinkedList();
list2.addTail(1);
list2.addTail(2);
list2.addTail(3);
list2.addTail(4);
System.out.print("采用尾插法的链表是:");
list2.prtn();
System.out.println();
System.out.print("添加一个节点:");
list2.addIndex("hello", 1);
list2.prtn();
System.out.println();
System.out.print("查找节点:");
list2.find(1);
System.out.println();
System.out.print("删除添加的节点");
list2.delete(1);
list2.prtn();
}
}
(3)测试结果
采用头插法的链表是:4 3 2 1 长度为4
添加一个节点:hello 4 3 2 1 长度为5
查找节点:链表中第1节点的值是:hello
删除添加的节点4 3 2 1 长度为4
采用尾插法的链表是:1 2 3 4 长度为4
添加一个节点:hello 1 2 3 4 长度为5
查找节点:链表中第1节点的值是:hello
删除添加的节点1 2 3 4 长度为4