Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/wangzheng0822/algo
/ addLast
Method
addLast
java/05_array/GenericArray.java:85–87 ·
view source on GitHub ↗
(T e)
Source
from the content-addressed store, hash-verified
83
84
// 向数组尾插入元素
85
public
void
addLast(T e) {
86
add(size, e);
87
}
88
89
// 删除 index 位置的元素,并返回
90
public
T remove(
int
index) {
Callers
nothing calls this directly
Calls
1
add
Method · 0.95
Tested by
no test coverage detected