Blog
-
C++ Algorithm | 'STL algorithm' Core Summary
C++ STL algorithm core summary. Frequently used functions like sort, search, transform, and tips to prevent mistakes and make selections.
-
C++ Heap Algorithms: make_heap, push_heap, pop_heap,
Master C++ heap algorithms: make_heap, push_heap, pop_heap, sort_heap, is_heap, priority_queue, custom comparators, performance benchmarks, and producti...
-
C++ Algorithm Permutation | 'Permutation Algorithm' Guide
Generate lexicographic permutations with C++ next_permutation and prev_permutation. Explains sort-then-loop pattern and brute force/practical usage.
-
C++ Algorithm Problem Solving — Complete Guide
Cover 10 essential C++ algorithm coding test problems.
-
C++ auto Type Deduction — Complete Guide
C++ auto type deduction guide. auto is a C++11 keyword that lets the compiler deduce variable types from initializers.
-
C++ Benchmarking: chrono, Warmup, Statistics, and Google
Benchmark C++ code reliably: high_resolution_clock, warmup runs, mean/median/stddev, Google Benchmark, and pitfalls like compiler elision and cache.
-
C++ Bridge Pattern Complete Guide
Complete C++ Bridge pattern guide.
-
CMake find_package for C++ | Boost· OpenSSL
CMake find_package tutorial: CONFIG vs MODULE, imported targets, Boost/OpenSSL/Qt examples, optional deps, and multi-library HTTP server—SEO keywords.
-
CMake Targets in C++ | PUBLIC/PRIVATE
Modern CMake targets: add_executable/add_library, target_* commands, visibility, transitive deps, OBJECT libs, aliases—multi-library project.
-
C++ Command Pattern: Complete Guide | Undo· Redo
Command pattern in C++: encapsulate requests as objects for undo/redo, macros, transactions, and async work—editor and banking-style examples with SEO.