码迷,mamicode.com
首页 > 编程语言 > 详细

java数据结构-双向循环链表实现

时间:2020-02-14 20:35:12      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:取数据   turn   next   ext   this   java数据结构   双向   get   取数   

package com.node;

/**
* @auther 付强
* @date 2020/2/14 - 13:32
*/
public class DoubleNode {
//上一个节点(等于this)保证循环
DoubleNode pre=this;
//下一个节点
DoubleNode next=this;
//节点数据
int data;
public DoubleNode(int data){
this.data=data;
}
//增加节点
public void after(DoubleNode node){
//原来的下一个节点
DoubleNode nextNext=next;
//把新节点作为当前节点的下一个节点
this.next=node;
//把当前节点作为新节点的前一个节点
node.pre=this;
//让原来的下一个节点作为新节点的下一个节点
node.next=nextNext;
//让原来的下一个节点的上一个节点为新节点
nextNext.pre=node;
}
//下一个节点
public DoubleNode next(){
return this.next;
}
//上一个节点
public DoubleNode pre(){
return this.pre;
}
//获取数据
public int getData(){
return this.data;
}

}

java数据结构-双向循环链表实现

标签:取数据   turn   next   ext   this   java数据结构   双向   get   取数   

原文地址:https://www.cnblogs.com/fuqiang-java/p/12309186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!