/
githubmirror
/
hello-algo
Обзор
Документация
Войти
/
githubmirror
/
hello-algo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ja/codes/cpp/utils/common.hpp
28 строк
475 B
Yudong Jin
Re-translate the Japanese version (#1871)
30 мар 2026, 02:30
Не верифицирован
30 мар 2026, 02:30
d7b2277
Код
Авторство
О чём код?
/** * File: common.hpp * Created Time: 2021-12-19 * Author: krahets (krahets@163.com) */ #pragma once #include <algorithm> #include <chrono> #include <deque> #include <iostream> #include <list> #include <queue> #include <random> #include <set> #include <stack> #include <string> #include <unordered_map> #include <unordered_set> #include <vector> #include "list_node.hpp" #include "print_utils.hpp" #include "tree_node.hpp" #include "vertex.hpp" using namespace std;