insertTail method
插入指定元素到列表尾部
Implementation
bool insertTail(T element) {
if (isNull) return false;
this!.insert(this!.length, element);
return true;
}
插入指定元素到列表尾部
bool insertTail(T element) {
if (isNull) return false;
this!.insert(this!.length, element);
return true;
}