-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathListaArray.java
48 lines (40 loc) · 980 Bytes
/
ListaArray.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
public class ListaArray implements EstruturaDeDados{
@Override
public boolean insert(int chave) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean delete(int chave) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean search(int chave) {
// TODO Auto-generated method stub
return false;
}
@Override
public int minimum() {
// TODO Auto-generated method stub
return 0;
}
@Override
public int maximum() {
// TODO Auto-generated method stub
return 0;
}
@Override
public int sucessor(int chave) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int prodessor(int chave) {
// TODO Auto-generated method stub
return 0;
}
public static void main(String[] args) {
ListaArray r = new ListaArray();
}
}