- 
                
                
                
                
CPP-STL
Some notes on C++ STL. std::vector https://en.cppreference.com/w/cpp/container/vector 1234template< class T, class Allocator = std::allocator<T>> class vector; (construtor) : pu... - 
                
                
                
                
LeetCode Log
This post is aimed to record some interesting LeetCode problems. Algorithms6. Zigzag Conversion LeetCode Source An solution: 123456789101112131415161718192021222324class Solution {public: stri... - 
                
                
                
                
Regular Expression
Reference: Regular Expressions Tutorial Regular expressions is a sequence of characters that forms a search pattern and own common shortands regex or regexp. Engines are programs that can process... - 
                
                
                
                
Notes on Git
One of explorations in winter holiday is learning the usage of git by Learn Git Branching, which provides a visualized way to learn. Introduction to git commitsCommitsA commit in a git repository r... - 
                
                
                
                
C++ Review
This is a document I organized while reviewing for my C++ final exam, focusing only on the key points. IntroductionThe three characteristics of algorithms: clear representation (unambiguous), effec... 
	1