-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVertex.java
89 lines (76 loc) · 1.62 KB
/
Vertex.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package main;
import java.util.LinkedList;
import java.util.concurrent.atomic.AtomicBoolean;
public class Vertex<T> {
private T item;
private LinkedList<T> neighbors;
/**
* @param item
*/
public Vertex(T item) {
this.item = item;
this.neighbors = new LinkedList<T>();
}
public T getItem() {
return item;
}
/**
* @return LinkedList
*/
public LinkedList<T> getNeighbors() {
return neighbors;
}
/**
* @param v
* @return void
*/
public void addNeighbor(T v) {
if(!this.isNeighbor(v)) {
this.neighbors.push(v);
}
}
/**
* @param v
* @return boolean
*/
public boolean isNeighbor(T v) {
return this.neighbors.contains(v);
}
/**
* @param v
*/
public Vertex<T> removeNeighbor(T v) {
if (this.isNeighbor(v)) {
this.neighbors.remove(v);
}
return this;
}
/**
* @return boolean
*/
public boolean hasNeighbors() {
return !this.neighbors.isEmpty();
}
/**
*
* @param n
* @return boolean
*/
public boolean hasNeighbor(T n) {
AtomicBoolean exist = new AtomicBoolean(false);
this.neighbors.stream().forEach(w -> {
if (w.equals(n)) exist.set(true);
});
return exist.get();
}
/**
* Show all neighbors
*/
public void showNeighbors() {
System.out.print("[");
this.neighbors.stream().forEach(e -> {
System.out.print(", " + e);
});
System.out.println("]");
}
}