?? linlisttest.java
字號(hào):
public class LinListTest{
public static void main(String args[]){
LinList linList = new LinList();
int n = 10;
try{
for(int i = 0; i < n; i++){
linList.insert(i,new Integer(i+1));
}
linList.delete(4);
for(int i = 0; i < linList.size; i++){
System.out.print(linList.getData(i)+" ");
}
}
catch(Exception e){
System.out.println(e.getMessage());
}
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -