java自写代码--没有头结点的双向链表的基本操作

内含创建、插入、删除
因为感觉这类操作代码都大同小异,于是就不再缀写了。

//基于双向链表的基本操作

public class dbList {

	public int data;
	public dbList prior;
	public dbList next;
	
	public dbList() {}
	
	public dbList(int data) {
		this.data = data;
		
	}
	
	//创建双向链表
	public dbList head;//默认值为空
	public dbList tail; 
	
	//插入指定结点
	public void addNode(int data) {
		dbList node = new dbList(data);
		
		if(this.head==null) {
			this.head = node;
			this.tail = node;
		}else {
			this.tail.next = node;
			node.prior = this.tail;
			this.tail = this.tail.next;
		}
		
	}
	
	//删除指定位置的下一个结点
	public void deleteNode(int index) {
		dbList temp = this.head;
		int step = 0;
		
		while(temp!=null) {
			step++;
			if(step!=index) {
				temp = temp.next;
			}else {
				temp.next.next.prior = temp;
				temp.next = temp.next.next;
			}
		}
	}
	
	//打印双向链表
	public void printDB() {
		dbList temp = this.head;
		
		while(temp!=null) {
			System.out.print(temp.data+" ");
			temp = temp.next;
		}
		
	}

	public static void main(String[] args) {
		dbList db = new dbList();
		db.addNode(0);
		db.addNode(1);
		db.addNode(2);
		db.addNode(3);
		db.printDB();
		System.out.println("\t");
		db.deleteNode(1);
		db.printDB();
		
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值