Class MyLinkedList
- java.lang.Object
-
- g0701_0800.s0707_design_linked_list.MyLinkedList
-
public class MyLinkedList extends Object
-
-
Constructor Summary
Constructors Constructor Description MyLinkedList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAtHead(int val)
void
addAtIndex(int index, int val)
void
addAtTail(int val)
void
deleteAtIndex(int index)
int
get(int index)
-