MyLibrary_cpp

所属分类:工具库
开发工具:Vim Script
文件大小:0KB
下载次数:0
上传日期:2023-09-20 06:28:29
上 传 者sh-1993
说明:  C++竞争编程库
(C++ Competitive Programming Library)

文件列表:
Introduction.md (1538, 2023-09-19)
LICENSE (1062, 2023-09-19)
autoload/ (0, 2023-09-19)
autoload/my_library.vim (785, 2023-09-19)
doc/ (0, 2023-09-19)
doc/my_library.jax (3119, 2023-09-19)
document/ (0, 2023-09-19)
document/Dijkstra.md (3450, 2023-09-19)
document/GCD.md (999, 2023-09-19)
document/Geometry.md (542, 2023-09-19)
document/LCM.md (1175, 2023-09-19)
document/Log.md (1248, 2023-09-19)
document/PrimeFactorization.md (3260, 2023-09-19)
document/PrimeSieve.md (4417, 2023-09-19)
document/RunLength.md (2815, 2023-09-19)
document/UnionFind.md (2372, 2023-09-19)
document/Vector2.md (5388, 2023-09-19)
document/convertBaseNumber.md (1361, 2023-09-19)
document/is_prime.md (1834, 2023-09-19)
document/mod_int.md (4355, 2023-09-19)
document/sort_second.md (1754, 2023-09-19)
plugin/ (0, 2023-09-19)
plugin/my_library.vim (335, 2023-09-19)
sample/ (0, 2023-09-19)
sample/Dijkstra.cpp (1851, 2023-09-19)
sample/GCD-LCM.cpp (293, 2023-09-19)
sample/Geometry.cpp (2542, 2023-09-19)
sample/Log.cpp (383, 2023-09-19)
sample/PrimeFactorization.cpp (1033, 2023-09-19)
sample/PrimeSieve.cpp (1900, 2023-09-19)
sample/RunLength.cpp (877, 2023-09-19)
sample/UnionFind.cpp (1348, 2023-09-19)
sample/Vector2.cpp (3879, 2023-09-19)
sample/convertBaseNumber.cpp (475, 2023-09-19)
sample/is_prime.cpp (635, 2023-09-19)
sample/mod_int.cpp (2711, 2023-09-19)
sample/sort_second.cpp (723, 2023-09-19)
source/ (0, 2023-09-19)
... ...

**新しくライブラリを作り直しました:[ryota2357/cpl](https://github.com/ryota2357/cpl)** # MyLibrary_cpp - 競プロ用自作ライブラリ(for C++) - 使用テンプレート: [dotfiles/vim/Templates/source/cpp.txt](https://github.com/2357or/dotfiles/blob/master/vim/Templates/souce/cpp.txt) - [導入方法](Introduction.md) - ヘルプ(日本語) `:help my_library` ## 数学 | 名前 | コマンド | ドキュメント | サンプル | | :----- | :--------- | :------------- | :--------- | | 最大公約数(GCD) | `:Library gcd` | [GCD.md](/document/GCD.md) | [GCD-LCM.cpp](/sample/GCD-LCM.cpp) | | 最小公倍数(LCM) | `:Library lcm` | [LCM.md](/document/LCM.md) | [GCD-LCM.cpp](/sample/GCD-LCM.cpp) | | 素数判定 | `:Library is_prime` | [is_prime.md](/document/is_prime.md) | [is_prime.cpp](/sample/is_prime.cpp) | | 素因数分解 | `:Library prime_fact` | [PrimeFactorization.md](/document/PrimeFactorization.md) | [PrimeFactorization.cpp](/sample/PrimeFactorization.cpp) | | 対数関数 | `:Library log` | [Log.md](/document/Log.md) | [Log.cpp](/sample/Log.cpp) | | 基数変換 | `:Library conv_base` | [convertBaseNumber.md](/document/convertBaseNumber.md) | [convertBaseNumber.cpp](sample/convertBaseNumber.cpp) | ## データ構造 | 名前 | コマンド | ドキュメント | サンプル | | :----- | :--------- | :------------- | :--------- | | UnionFind木 | `:Library uf` | [UnionFind.md](/document/UnionFind.md) | [UnionFind.cpp](/sample/UnionFind.cpp) | | 素数篩 | `:Library sieve` | [PrimeSieve.md](/document/PrimeSieve.md) | [PrimeSieve.cpp](/sample/PrimeSieve.cpp) | | Dijkstra法(単一始点最短経路) | `:Library dijkstra` | [Dijkstra.md](/document/Dijkstra.md) | [Dijkstra.cpp](/sample/Dijkstra.cpp) | ## ユーティリティ | 名前 | コマンド | ドキュメント | サンプル | | :----- | :--------- | :------------- | :--------- | | mod_int | `:Library mint` | [mod_int.md](/document/mod_int.md) | [mod_int.cpp](/sample/mod_int.cpp) | | Vector2 | `:Library vector2` | [Vector2.md](/document/Vector2.md) | [Vector2.cpp](/sample/Vector2.cpp) | | Geometry | `:Library geom/all` | [Geometry.md](/document/Geometry.md) | [Geometry.cpp](/sample/Geometry.cpp) | ## 比較関数 | 名前 | コマンド | ドキュメント | サンプル | | :----- | :--------- | :------------- | :--------- | | secondでソート | `:Library sort_second` | [sort_second.md](/document/sort_second.md) | [sort_second.cpp](/sample/sort_second.cpp) | ## データ圧縮 | 名前 | コマンド | ドキュメント | サンプル | | :----- | :--------- | :------------- | :--------- | | RunLength圧縮 | `:Library runlength` | [RunLength.md](/document/RunLength.md) | [RunLength.cpp](/sample/RunLength.cpp) | ## 外部ライブラリ | 名前 | コマンド | ドキュメント | | :----- | :--------- | :------------- | | 多倍長整数 | `:Library boost/cpp_int` | [Boost逆引きリファレンス/多倍長整数](https://boostjp.github.io/tips/multiprec-int.html) | | 多倍長浮動小数点数 | `:Library boost/cpp_float` | [Boost逆引きリファレンス/多倍長浮動小数点数](https://boostjp.github.io/tips/multiprec-float.html) |

近期下载者

相关文件


收藏者