赞
踩
链表就是一种物理存储结构上非连续存储结构,数据元素的逻辑顺序是通过链表中的引用链接次序实现的 。
也是线性表。
数据域:存储数据元素信息的域。
指针域:存储直接后继的信息。
链表根据三个条件分类:
根据以上3个条件来分类(每一个条件选一),链表一共有8种。
单链表全称为:无头单向不循环链表。
自己实现一个单链表(存储int数据类型),将单链表作为一个类,我们实现一些“接口”即成员方法来实现数据的增删查改。
// 1、无头单向非循环链表实现 public class SingleLinkedList { //头插法 public void addFirst(int data); //尾插法 public void addLast(int data); //任意位置插入,第一个数据节点为0号下标 public boolean addIndex(int index,int data); //查找是否包含关键字key是否在单链表当中 public boolean contains(int key); //删除第一次出现关键字为key的节点 public void remove(int key); //删除所有值为key的节点 public void removeAllKey(int key); //得到单链表的长度 public int size(); //清空链表 public void clear(); }
因为我们需要使用数据域,指针域,在链表中一个一个串起来。那我们就将数据域指针域使用一个静态内部类来封装。只将第一个节点用head来表示。
注意:此处的head不是链表分类时的头,因为分类的头的数据域的数据是无效的而此处是有效的。
public class SingleLinkedList {
static class ListNode{
public int val;
public ListNode next;
public ListNode(int val) {
this.val = val;
}
}
public ListNode head;
}
实现思路:
将当前节点的下一个节点(next)指向头(head),再改头为当前节点。
public void addFirst(int data) {
ListNode cur = new ListNode(data);
cur.next = head;
head = cur;
}
实现思路:
public void addLast(int data){
if(head == null){
head = new ListNode(data);
return;
}
ListNode cur = head;
while(cur.next != null){
cur = cur.next;
}
cur.next = new ListNode(data);
}
实现思路:
public boolean addIndex(int index,int data) throws IndexIllegalException{ try{ if(index < 0 || index > size()){ throw new IndexIllegalException("位置不合法"); } else if (index == 0) { addFirst(data); return true; } else if (index == size()) { addLast(data); return true; }else{ ListNode cur = head; ListNode pre = head; ListNode newNode = new ListNode(data); for (int i = 0; i < index-1; i++) { cur = cur.next; pre = pre.next; } newNode.next = cur.next; pre.next = cur; return true; } }catch(IndexIllegalException e){ e.printStackTrace(); return false; } }
使用循环遍历即可。
public boolean contains(int key){
ListNode cur = head;
for (int i = 0; i < size(); i++) {
if(cur.val == key){
return true;
}
cur = cur.next;
}
return false;
}
实现思路:
public void remove(int key){ if(head == null){ return; } else if (head .val == key) { head = head.next; return; } ListNode cur = head.next; ListNode pre = head; while(cur != null){ if(cur.val == key){ pre.next = cur.next; return; } cur = cur.next; pre = pre.next; } }
跟删除一个节点一个逻辑只不过删除后不返回,并且头结点最后判断。
public void removeAllKey(int key){ if(head == null){ return; } ListNode cur = head.next; ListNode pre = head; while(cur != null){ if(cur.val == key){ pre.next = cur.next; cur = cur.next; }else { cur = cur.next; pre = pre.next; } } if(head.val == key){ head = head.next; } }
直接循环遍历就行。
public int size(){
ListNode cur = head;
int size = 0;
while(cur != null){
cur = cur.next;
size++;
}
return size;
}
直接循环将每一个节点置空,注意置空前要将头先向后走。
public void clear(){
ListNode cur = head;
while (cur != null){
head = cur.next;
cur = null;
cur = head;
}
}
优缺点如下:
在Java的集合类中使用的是无头双向非循环链表。
自己实现一个双向链表(存储int数据类型),将双向链表作为一个类,我们实现一些“接口”即成员方法来实现数据的增删查改。
// 2、无头双向链表实现 public class LinkedList { //头插法 public void addFirst(int data); //尾插法 public void addLast(int data); //任意位置插入,第一个数据节点为0号下标 public boolean addIndex(int index,int data); //查找是否包含关键字key是否在单链表当中 public boolean contains(int key); //删除第一次出现关键字为key的节点 public void remove(int key); //删除所有值为key的节点 public void removeAllKey(int key); //得到链表的长度 public int size(); //情空链表 public void clear(); }
因为我们需要使用数据域,指针域,在链表中一个一个串起来。那我们就将数据域指针域使用一个静态内部类来封装。只将第一个节点用head来表示,最后一个节点用last表示。
注意:此处的head不是链表分类时的头,因为分类的头的数据域的数据是无效的而此处是有效的。
static class ListNode{
public int val;
public ListNode prev;
public ListNode next;
public ListNode(int val) {
this.val = val;
}
}
public ListNode head;
public ListNode last;
实现思路:
public void addFirst(int data){
ListNode cur = new ListNode(data);
if(head == null){
head = last = cur;
return;
}
cur.next = head;
head.prev = cur;
head = cur;
}
实现思路:
public void addLast(int data){
ListNode cur = new ListNode(data);
if(last == null){
head = last = cur;
return;
}
last.next = cur;
cur.prev = last;
last = cur;
}
实现思路:
public boolean addIndex(int index,int data) throws IndexIllegalException{ try{ if(index < 0 || index > size()){ throw new IndexIllegalException("插入位置不合法"); } else if (index == 0) { addFirst(data); return true; } else if (index == size()) { addLast(data); return true; }else { ListNode cur = head; ListNode newNode = new ListNode(data); for (int i = 0; i < index; i++) { cur = cur.next; } newNode.prev = cur.prev; cur.prev = newNode; newNode.next = cur; return true; } }catch (IndexIllegalException e){ e.printStackTrace(); return false; } }
直接循环遍历就行。
public boolean contains(int key){
ListNode cur = head;
while(cur != null){
if(cur.val == key){
return true;
}
cur = cur.next;
}
return false;
}
实现思路:
public void remove(int key){ ListNode cur = head; if(head.val == key){ head.next.prev = null; head = head.next; return; } else { while(cur.next != null){ if(cur.val == key){ cur.prev.next = cur.next; cur.next.prev = cur.prev; return; } cur = cur.next; } if (last.val == key) { last.prev.next = null; last = last.prev; return; } } }
public void removeAllKey(int key){ ListNode cur = head.next; while(cur.next != null){ if(cur.val == key){ cur.prev.next = cur.next; cur.next.prev = cur.prev; } cur = cur.next; } if(head.val == key){ head.next.prev = null; head = head.next; } if (last.val == key) { last.prev.next = null; last = last.prev; } }
直接循环遍历即可。
public int size(){
ListNode cur = head;
int size = 0;
while(cur != null){
size++;
cur = cur.next;
}
return size;
}
实现思路:
public void clear(){
ListNode cur = head;
while(cur != null){
ListNode curNext = cur.next;
cur.prev = null;
cur.next = null;
cur = curNext;
}
head = null;
last = null;
}
}
在Java中用集合类LinkedList来表示双向链表。
接口说明:
Java中提供了两个构造方法。
方法 | 方法用途介绍 |
---|---|
LinkedList() | 无参构造 |
public LinkedList(Collection<? extends E> c) | 使用其他集合容器中元素构造List |
提供的常用方法与上面实现的差不多。
优缺点如下:
对比如下图:
删除链表中等于给定值 val 的所有节点
反转一个单链表
链表的中间节点
合并两个有序链表
链表分割
链表的回文结构
相交链表
环形链表
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。