-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcostTable.java
More file actions
72 lines (60 loc) · 1.21 KB
/
Copy pathcostTable.java
File metadata and controls
72 lines (60 loc) · 1.21 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package CS486AI.A1Q4;
import java.util.ArrayList;
public class costTable {
ArrayList<Integer> ar = new ArrayList<Integer>();
boolean valid = true;
public costTable(){
// create node
for (int i =0; i <9; i++){
ar.add(i+1);
}
valid = true;
}
public costTable(ArrayList<Integer> arrayList){
this.ar = arrayList;
valid = true;
}
public void add(int target){
this.ar.add(target);
}
public boolean isEmpty(){
if (ar.size() == 0)
return true;
else
return false;
}
public boolean contain(int target){
if (this.ar.contains(target))
return true;
else
return false;
}
public void pop(int target){
this.ar.remove(target-1);
}
public void print(){
for (int i = 0; i < this.ar.size(); i++){
System.out.println(this.ar.get(i));
}
}
public int getLocation(int target){
for (int i = 0; i < this.ar.size(); i++){
if (this.ar.get(i) == target)
return i;
}
return -1;
}
public void deleteNum(int target){
for (int i = 0; i < this.ar.size(); i++){
if (this.ar.get(i) == target)
this.ar.remove(i);
}
}
public int get(int target){
for (int i = 0; i < this.ar.size(); i++){
if (this.ar.get(i) == target)
return ar.get(i);
}
return -1;
}
}