package com.gec.linkedlist; //模拟单链表的增删改查 //链表实现水浒传的人物添加到链表的末端 public class SingleLinkedListDemo { public static void main(String[] args) { // 模拟链表 // 先创建英雄 HeroNode h1 = new HeroNode(1, "宋江"); HeroNode ...