java 链表实现

这里我分享下自己用Java实现的链表 :

首先给出一个链表模型:



第一步:  创建空链表   



第二步:创建头节点



第三部:创建尾节点





到此为止 一个比较有完整意义的链表已经构造出 

增加节点




删除节点:



总结:我们可以看到链表在增加节点和删除节点的时候,只需要改变next指针的指向,就能达到我们想要的操作目的。而对于数组来说,增加和删除一个元素都要将目标删除元素后面的每个元素往前移动一位。 如果增删很频繁的话,链表会比数组会更快。对于遍历操作而言,链表需要通过next指针遍历每一个元素,相对于数组遍历直接访问下标来说,会比较慢。  所以在增删比较频繁的时候我们应该考虑是否使用链表这种数据结构。

贴出代码:

package test;

public class LinkList<T> { 
	
	private Node<T> head; //链表的头节点
	private Node<T> tail; //链表的尾节点
	
	/**
	 * 构造一个空链表
	 */
	public LinkList() { 
		head = tail = null;    
	}  
	
	/**
	 * 链表内部的节点类
	 */
	private static class Node<T> {  
		T data;//节点的数据
		Node<T> next;//该节点的指向下一个节点的指针
		
		Node(T data) { 
		    this.data = data;  
		    this.next = null;   
		}  
  
	}  
	
	public void addHead(T point) {//为空链表增加头结点    
		this.head = new Node<T>(point);  
		if(tail == null) {  
		    tail = head;  
		}  
	}  
	
	public void addTail(T point){//为链表增加尾节点  
	    tail = new Node<T>(point);  
	    head.next = tail;  
	}  
	
	public void insert(T point) {
		if (this.head == null) {
			addHead(point);
			
		} else if (this.tail == this.head) {
			addTail(point);
			
		} else {
	    	Node<T> preNext = head.next;  
			@SuppressWarnings({ "unchecked", "rawtypes" })
			Node<T> newNode = new Node(point);  
	        preNext = head.next;  
	        this.head.next = newNode;  
	        newNode.next = preNext;  
		}
	     
	}  
	
	public void printLinkList() {    //打印链表
		Node<T> curr = this.head;  
		if (isEmpty()) {  
			try {
				throw new Exception("linklist is empty");
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		
		while(curr != null){  
			System.out.print(curr.data+" ");      
			curr = curr.next;  
		}  	
	}  
	
	public void delete(T data){//删除某一节点
		Node<T> curr = head, prev = null;
		boolean suc = false;//是否删除成功标志
		while (curr != null) {
			if (curr.data.equals(data)) {
				//判断是什么节点
				if (curr == head) {   //如果删除的是头节点
					System.out.println('\n'+"delete head node");
					head = curr.next;
					suc = true;
					return;
				}
				if (curr == tail) { //如果删除的是尾节点
					System.out.println('\n'+"delete tail node");
					tail = prev;
					prev.next = null;
					suc = true;
					return;
				} else {//如果删除的是中间节点(即非头节点或非尾节点)
					System.out.println('\n'+"delete center node");
					prev.next = curr.next;
					suc = true;
					return;
				}
			}

			prev = curr;
			curr = curr.next;	
		}
		
		if(suc == false) {
			System.out.println('\n'+"没有这个数据");
		}	
	
	}
	
	public boolean isEmpty(){//判断链表是否为空
		return this.head == null || this.tail == null;
    } 

    public static void main(String[] args) {  
		LinkList<Integer> mylist = new LinkList<Integer>();//构造一个空链表  
		mylist.insert(5);  
		mylist.insert(6);  
		mylist.insert(7);  
		mylist.insert(3);  
		mylist.printLinkList();  
		mylist.delete(1);
		mylist.printLinkList();  
		mylist.delete(5);
		mylist.printLinkList();
		mylist.delete(6);
		mylist.printLinkList();  
    }  
  
} 




输出结果:

5 3 7 6 
没有这个数据
5 3 7 6 
delete head node
3 7 6 
delete tail node
3 7 


  • 6
    点赞
  • 21
    收藏
    觉得还不错? 一键收藏
  • 19
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 19
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值