这是我的第一篇博客
测试一下
字体大小
字体大小
字体大小
字体大小
public void insert(T t) {
if (isempty()) {
Node newNode = new Node(head, null, t);
last = newNode;
head.next = last;
public void insert(T t) {
if (isempty()) {
Node newNode = new Node(head, null, t);
last = newNode;
head.next = last;
标签:Node,insert,head,last,day1,newNode,字体大小
From: https://www.cnblogs.com/wdnmdp/p/16710607.html