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.
21 lines
527 B
21 lines
527 B
/*
|
|
* File: vertex.rs
|
|
* Created Time: 2023-07-13
|
|
* Author: night-cruise (2586447362@qq.com)
|
|
*/
|
|
|
|
/* 顶点类型 */
|
|
#[derive(Copy, Clone, Hash, PartialEq, Eq)]
|
|
pub struct Vertex {
|
|
pub val: i32
|
|
}
|
|
|
|
/* 输入值列表 vals ,返回顶点列表 vets */
|
|
pub fn vals_to_vets(vals: Vec<i32>) -> Vec<Vertex> {
|
|
vals.into_iter().map(|val| Vertex { val }).collect()
|
|
}
|
|
|
|
/* 输入顶点列表 vets ,返回值列表 vals */
|
|
pub fn vets_to_vals(vets: Vec<Vertex>) -> Vec<i32> {
|
|
vets.into_iter().map(|vet| vet.val).collect()
|
|
} |