打开微信扫一扫,关注微信公众号
package com.husiwang.LinkList; public class Node { private Object Data; //数据缓冲区 private Node Next; //下移结点