单链表代码实现

package cn.dwk.链表;

import java.util.Stack;

public class SingleLinkedListDemo {
	public static void main(String[] args) {
		//先创建节点
		HeroNode hero1=new HeroNode(1, "宋江", "及时雨");
		HeroNode hero2=new HeroNode(2, "卢俊义", "玉麒麟");
		HeroNode hero3=new HeroNode(3, "吴用", "智多星");
		HeroNode hero4=new HeroNode(4, "林冲", "豹子头");
		
		//创建一个链表
		SingleLinkedList singleLinkedList=new SingleLinkedList();
		//加入
		singleLinkedList.addByOrder(hero1);
		singleLinkedList.addByOrder(hero4);
		singleLinkedList.addByOrder(hero3);
		singleLinkedList.addByOrder(hero2);
		//修改前显示
		singleLinkedList.list();
		//测试修改节点的代码
		HeroNode newHeroNode=new HeroNode(2,"小卢","玉麒麟~~");
		singleLinkedList.update(newHeroNode);
		//显示
		System.out.println("修改后显示");
		singleLinkedList.list();
		
		//删除一个节点
		singleLinkedList.del(1);
		System.out.println("删除后");
		singleLinkedList.list();
		
		//获取链表长度
		int length=singleLinkedList.getLength(singleLinkedList.getHead());
		System.out.println(length);
		
		//获取倒数第k个节点
		HeroNode res=singleLinkedList.findLastNode(singleLinkedList.getHead(), 4);
		System.out.println(res);
		
		//反转数组
		reversetList(singleLinkedList.getHead());
		System.out.println("反转单链表");
		singleLinkedList.list();
		
		//逆序弹出
		System.out.println("逆序打印");
		reversePrint(singleLinkedList.getHead());
	}
	
	
	//反转列表
	public static void reversetList(HeroNode head) {
		if(head.next==null||head.next.next==null) {
			return ;
		}
		//定义一个辅助变量,帮助我们遍历原来的链表
		HeroNode cur=head.next;
		HeroNode next=null;//指向当前节点[cur]的下一个节点
		HeroNode reverseHead=new HeroNode(0, "", "");
		//遍历原来的列表,每遍历一个节点,就将其取出,放在新的链表最前端
		while(cur!=null) {
			next=cur.next;
			cur.next=reverseHead.next;
			reverseHead.next=cur;
			cur=next;
		}
		head.next=reverseHead.next;
	}
	
	//使用栈反向打印
	public static void reversePrint(HeroNode head) {
		if(head.next==null) {
			return;
		}
		Stack<HeroNode> stack=new Stack<HeroNode>();
		HeroNode cur=head.next;
		//将链表的所有节点压入栈
		while(cur!=null) {
			stack.push(cur);
			cur=cur.next;
		}
		//将栈中的节点进行打印
		while(stack.size()>0) {
			System.out.println(stack.pop());
		}
	}
	
}

//定义一个SingleLinkedList 来管理我们的英雄
class SingleLinkedList{
	
	//先初始化一个头节点,头节点不要动,不存放具体数据
	private HeroNode head=new HeroNode(0, "", "");
	
	public HeroNode getHead() {
		return head;
	}
	
	//添加节点到单向链表
	//思路,当不考虑编号顺序时
	//1.找到当前链表的最后节点,将最后节点的next指向新的节点
	public void add(HeroNode heroNode) {
		//因为头节点不能动,因此需要一个辅助变量 temp
		HeroNode temp=head;
		//遍历链表,找到最后
		while(true) {
			//找到链表的最后
			if(temp.next==null) {
				break;
			}
			//如果没找到最后,就将temp后移
			temp=temp.next;
		}
		//当推出while循环时候,temp就指向了链表的最后
		temp.next=heroNode;
	}
	
	//第二种t添加,根据排名将英雄插入到指定位置
	public void addByOrder(HeroNode heroNode) {
		//因为头节点不能动,仍然通过辅助变量来找到添加的位置
		//我们找的temp是位于添加位置的前一个节点,否则加入不了
		HeroNode temp=head;
		boolean flag=false;//标识添加的编号是否存在,默认为false
		while(true) {
			if(temp.next==null) {
				//说明temp已经在最后
				break;
			}
			if(temp.next.no>heroNode.no) {//位置找到,就在temp的后面
				break;
			}else if(temp.next.no==heroNode.no) {
				//说明希望添加的编号已经存在
				flag=true;//标识编号存在
				break;
			}
			temp=temp.next;//后移
		}
		//判断flag的值
		if(flag) {
			//不能添加,说明编号存在
			System.out.printf("准备插入的英雄编号%d,已经存在,不能加入\n",heroNode.no);
		}else {
			//可以添加,插入到链表中(temp的后面)
			heroNode.next=temp.next;
			temp.next=heroNode;
		}
	}
	
	//修改节点的信息,根据编号来修改
	public void update(HeroNode newHeroNode) {
		//判断是否为空
		if(head.next==null) {
			System.out.println("链表为空");
			return;
		}
		//找到需要修改的节点
		 //定义一个辅助变量
		HeroNode temp=head.next;
		boolean flag=false;//标识是否找到该节点
		while(true) {
			if(temp==null) {
				break;//到了链表最后
			}
			if(temp.no==newHeroNode.no) {
				//找到了
				flag=true;
				break;
			}
			temp=temp.next;
		}
		if(flag) {
			temp.name=newHeroNode.name;
			temp.nickname=newHeroNode.nickname;
		}else {//没有找到这个节点
			System.out.printf("没有找到编号%d 的节点\n",newHeroNode.name	);
		}
	}
	
	//删除节点
	public void del(int no) {
		HeroNode temp=head;
		boolean flag=false;//标识是否找到待删除节点
		while(true) {
			if(temp.next==null) {
				break;
			}
			if(temp.next.no==no) {
				//找到了待删除节点的前一个节点temp
				flag=true;
				break;
			}
			temp=temp.next;
		}
		if(flag) {
			temp.next=temp.next.next;
		}else {
			System.out.println("没有找到待删除的节点");
		}
	}
	
	//显示链表(遍历)
	public void list() {
		//先判断链表是否为空
		if(head.next==null) {
			System.out.println("链表为空");
			return ;
		}
		//因为头节点不能动,因此需要一个辅助变量来遍历
		HeroNode temp=head.next;
		while(true) {
			//是否到链表最后了
			if(temp==null) {
				break;
			}
			//输出节点的信息
			System.out.println(temp);
			//将temp后移
			temp=temp.next;
		}
	}
	
	//返回链表个数
	public int getLength(HeroNode head) {
		int count=0;
		HeroNode temp=head.next;
		if(head.next==null) {
			return count;
		}
		while(temp!=null) {
			count++;
			temp=temp.next;
		}
		return count;
	}

	//查找倒数第n个节点
	public HeroNode findLastNode(HeroNode head,int index) {
		int length=getLength(head);
		if(head.next==null||index<=0||index>length) {
			return null;
		}
		int count=0;
		HeroNode cur=head.next;
		for(int i=0;i<length-index;i++) {
			cur=cur.next;
		}
		return cur;
	}

}


//定义HeroNode,每个HeroNode对象就是一个节点
class HeroNode{
	public int no;
	public String name;
	public String nickname;
	public HeroNode next;//指向下一个节点
	
	public HeroNode(int no,String name,String nickname) {
		this.no=no;
		this.name=name;
		this.nickname=nickname;
	}

	@Override
	public String toString() {
		return "HeroNode [no=" + no + ", name=" + name + ", nickname=" +nickname+ "]";
	}
	
	//为了显示方便,重写toString方法
	
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值