JAVA双向链表解析_java 实现双向链表实例详解

java 实现双向链表实例详解

发布于 2020-12-17|

复制链接

摘记: java 实现双向链表实例详解 双向链表是一个基本的数据结构,在Java中LinkedList已经实现了这种结构,不过作为开发者,也要拥有自己显示这种结构的能力。话不多说,上代码:

首先是链表的节点类:

```java

/ ..

java 实现双向链表实例详解 双向链表是一个基本的数据结构,在Java中LinkedList已经实现了这种结构,不过作为开发者,也要拥有自己显示这种结构的能力。话不多说,上代码:    首先是链表的节点类:

```java

/**

* 链表节点

* @author Administrator

*

* @param

*/

public class ChainNode {

private T data;

//对象编号

private int dataNo;

public ChainNode nextChainNode;

public ChainNode preChainNode;

public ChainNode(T data, ChainNode nextChainNode,

ChainNode preChainNode) {

this.data = data;

this.nextChainNode = nextChainNode;

this.preChainNode = preChainNode;

}

public ChainNode(T data) {

this.data = data;

}

public int getDataNo() {

return dataNo;

}

public void setDataNo(int dataNo) {

this.dataNo = dataNo;

}

public void setData(T data) {

this.data = data;

}

public T getData() {

return data;

}

}

```

然后是链表:

```java

/**

* 链表实现类

* @author Administrator

*

* @param

*/

public class Chain {

//头节点

private ChainNode headNode;

//末尾节点指针

private ChainNode lastNode;

private int size;

//创建链表就创建头节点

public Chain() {

this.headNode = new ChainNode(null);

this.lastNode = headNode;

}

//增加一个节点

public void addNode(T data) {

ChainNode node = new ChainNode(data);

if(lastNode != null){

lastNode.nextChainNode = node;

node.preChainNode = node;

node.setDataNo(size);

lastNode = node;

size++;

}

}

//删除指定索引的节点

public void deleteNode(int dataNo) throws Exception {

if(getSize() == 0){

throw new Exception("chain is empty");

}

for (ChainNode node = headNode.nextChainNode;node != null;node = node.nextChainNode) {

if(node.getDataNo() == dataNo){

node.preChainNode.nextChainNode = node.nextChainNode;

if(node.nextChainNode != null){

node.nextChainNode.preChainNode = node.preChainNode;

}

node.nextChainNode = null;

node.preChainNode = null;

size--;

//重新设置节点的编号

for (ChainNode chainNode = node.nextChainNode;chainNode != null;chainNode = chainNode.nextChainNode) {

chainNode.setDataNo(chainNode.getDataNo()-1);

}

return;

}

}

throw new Exception("the corresponding data that can not be found");

}

//获取指定索引的节点

public T get(int dataNo) throws Exception {

if(getSize() == 0){

throw new Exception("chain is empty");

}

for (ChainNode node = headNode.nextChainNode;node != null;node = node.nextChainNode) {

if(node.getDataNo() == dataNo){

return node.getData();

}

}

throw new Exception("the corresponding data that can not be found");

}

//修改对应索引的节点

public void set(int dataNo,T data) throws Exception {

if(getSize() == 0){

throw new Exception("chain is empty");

}

for (ChainNode node = headNode.nextChainNode;node != null;node = node.nextChainNode) {

if(node.getDataNo() == dataNo){

node.setData(data);

return;

}

}

throw new Exception("the data that is to be modified can not be found");

}

//是否包含对应数据的节点

public boolean isContains(T data) throws Exception {

if(getSize() == 0){

throw new Exception("chain is empty");

}

for (ChainNode chainNode = headNode.nextChainNode;chainNode != null;chainNode = chainNode.nextChainNode) {

if(chainNode.getData() == data){

return true;

}

}

return false;

}

//获取节点数量(不含头节点)

public int getSize() {

return size;

}

}

```

测试一下:

```java

public class ChainTest {

public static void main(String[] args) throws Exception{

String oneString = "one";

String twoString = "two";

String threeString = "three";

String fourString = "four";

Chain chain = new Chain();

chain.addNode(oneString);

chain.addNode(twoString);

chain.addNode(threeString);

chain.addNode(fourString);

for (int i = 0; i 结果:

```java

one

two

three

four

the data of the second node isthree

true

modify chain

one

haha

three

four

delete one node

one

haha

three

```

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值