You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
813 B
37 lines
813 B
/**
|
|
* File: Vertex.java
|
|
* Created Time: 2023-02-15
|
|
* Author: Krahets (krahets@163.com)
|
|
*/
|
|
|
|
package utils;
|
|
|
|
import java.util.*;
|
|
|
|
/* 顶点类 */
|
|
public class Vertex {
|
|
public int val;
|
|
|
|
public Vertex(int val) {
|
|
this.val = val;
|
|
}
|
|
|
|
/* 输入值列表 vals ,返回顶点列表 vets */
|
|
public static Vertex[] valsToVets(int[] vals) {
|
|
Vertex[] vets = new Vertex[vals.length];
|
|
for (int i = 0; i < vals.length; i++) {
|
|
vets[i] = new Vertex(vals[i]);
|
|
}
|
|
return vets;
|
|
}
|
|
|
|
/* 输入顶点列表 vets ,返回值列表 vals */
|
|
public static List<Integer> vetsToVals(List<Vertex> vets) {
|
|
List<Integer> vals = new ArrayList<>();
|
|
for (Vertex vet : vets) {
|
|
vals.add(vet.val);
|
|
}
|
|
return vals;
|
|
}
|
|
}
|