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.
35 lines
664 B
35 lines
664 B
2 years ago
|
/**
|
||
|
* File: PrintUtil.hpp
|
||
|
* Created Time: 2023-03-02
|
||
|
* Author: Krahets (krahets@163.com)
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
using namespace std;
|
||
|
|
||
|
/* 顶点类 */
|
||
|
struct Vertex {
|
||
|
int val;
|
||
|
Vertex(int x) : val(x) {}
|
||
|
};
|
||
|
|
||
|
/* 输入值列表 vals ,返回顶点列表 vets */
|
||
|
vector<Vertex*> valsToVets(vector<int> vals) {
|
||
|
vector<Vertex*> vets;
|
||
|
for (int val : vals) {
|
||
|
vets.push_back(new Vertex(val));
|
||
|
}
|
||
|
return vets;
|
||
|
}
|
||
|
|
||
|
/* 输入顶点列表 vets ,返回值列表 vals */
|
||
|
vector<int> vetsToVals(vector<Vertex*> vets) {
|
||
|
vector<int> vals;
|
||
|
for (Vertex *vet : vets) {
|
||
|
vals.push_back(vet->val);
|
||
|
}
|
||
|
return vals;
|
||
|
}
|