JimmyWang0417 's Competitive Programming Templates
Count My Code:
===============================================================================
Language Files Lines Code Comments Blanks
===============================================================================
C++ 1 91 91 0 0
C++ Header 57 5298 5127 59 112
Makefile 1 2 2 0 0
Markdown 2 297 0 260 37
Python 1 20 18 1 1
Shell 1 15 5 5 5
===============================================================================
Total 63 5723 5243 325 155
===============================================================================
The Directory Tree of My Codes:
.
├── articles
│ └── main.pdf
├── assets
├── auto.sh
├── Generator.py
├── image
│ └── 88D2DB2E657F7DB09DAB8A02818C9A60.jpg
├── lib.typ
├── LICENSE
├── main.typ
├── README.md
└── Templates
├── dataStructure
│ ├── cartesianTree.hpp
│ ├── decomposition.hpp
│ ├── fenwick.hpp
│ ├── linkCutTree.hpp
│ ├── main.typ
│ ├── segmentTreeBeats.hpp
│ └── topTree.hpp
├── geometry
│ ├── 2D
│ │ ├── 2d.hpp
│ │ ├── circle.hpp
│ │ ├── convex-hull.hpp
│ │ ├── half-convex-hull.hpp
│ │ ├── line.hpp
│ │ ├── main.typ
│ │ ├── point.hpp
│ │ ├── polygon.hpp
│ │ └── segment.hpp
│ ├── 3D
│ │ ├── 3d.hpp
│ │ ├── convex-hull.hpp
│ │ ├── Coordinate-System.hpp
│ │ ├── line.hpp
│ │ ├── main.typ
│ │ ├── plane.hpp
│ │ ├── point.hpp
│ │ ├── polygon.hpp
│ │ └── sphere.hpp
│ ├── main.typ
│ └── nearestPoints.cpp
├── graph
│ ├── blockForest.hpp
│ ├── eulerTour.hpp
│ ├── johnson.hpp
│ ├── main.typ
│ ├── minCycle.hpp
│ ├── networkFlow
│ │ ├── main.typ
│ │ ├── minCostFlow.hpp
│ │ └── networkFlow.hpp
│ ├── ringCount.hpp
│ ├── steinerTree.hpp
│ ├── stoerWagner.hpp
│ └── tarjan.hpp
├── initialization & misc
│ ├── approx.hpp
│ ├── bit.hpp
│ ├── hashTable.hpp
│ ├── io.hpp
│ ├── main.md
│ ├── main.typ
│ └── makefile
├── main.typ
├── math
│ ├── berlekampMassey.hpp
│ ├── comb.hpp
│ ├── combinatorics.typ
│ ├── euclidean.hpp
│ ├── fib.typ
│ ├── gameTheory.typ
│ ├── jYZpd0.png
│ ├── linnerBasis.hpp
│ ├── main.typ
│ ├── matrix.hpp
│ ├── min25.hpp
│ ├── modint.hpp
│ ├── numberTheory.hpp
│ ├── polynomial.hpp
│ ├── prime.hpp
│ ├── prime.typ
│ ├── schreierSims.hpp
│ └── stirling.typ
└── stringAlgorithm
├── acam.hpp
├── exkmp.hpp
├── exsam.hpp
├── kmp.hpp
├── lyndon.hpp
├── main.typ
├── manacher.hpp
├── pam.hpp
├── sa.hpp
├── sam.hpp
└── trie.hpp