We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94ec28 commit 4618840Copy full SHA for 4618840
group18/935542673/Coding/src/com/ikook/basic_data_structure/MyList.java
@@ -0,0 +1,22 @@
1
+package com.ikook.basic_data_structure;
2
+
3
+/**
4
+ * @author ikook QQ号码: 935542673
5
+ */
6
+public interface MyList {
7
8
+ public void add(Object o);
9
+ public void add(int index, Object o);
10
11
+ public int size();
12
13
+ public boolean isEmpty();
14
15
+ public Object get(int index);
16
17
+ public Object remove(int index);
18
+ public boolean remove(Object obj);
19
20
+ public Object set(int index, Object obj);
21
22
+}
0 commit comments