/
githubmirror
/
hello-algo
Обзор
Документация
Войти
/
githubmirror
/
hello-algo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
codes/javascript/modules/Vertex.js
35 строк
688 B
krahets
Fomrat the JS and TS codes with prettier.
17 апр 2023, 16:58
17 апр 2023, 16:58
c4ea4e3
Код
Авторство
О чём код?
/** * File: Vertex.js * Created Time: 2023-02-15 * Author: Zhuo Qinyue (1403450829@qq.com) */ /* 顶点类 */ class Vertex { val; constructor(val) { this.val = val; } /* 输入值列表 vals ,返回顶点列表 vets */ static valsToVets(vals) { const vets = []; for (let i = 0; i < vals.length; i++) { vets[i] = new Vertex(vals[i]); } return vets; } /* 输入顶点列表 vets ,返回值列表 vals */ static vetsToVals(vets) { const vals = []; for (const vet of vets) { vals.push(vet.val); } return vals; } } module.exports = { Vertex, };