Xiahua
  • About
  • Posts
  • Tags
LeetCode Graph Question Summary

Data Structure Graph has multiple representations, overall there are 3 ways: Adjacency Matrix A two-dimensional matrix, in which the rows represent so… ...more

November 15, 2024 #LeetCode #C++ #Algorithm #Graph
LeetCode Binary Tree Question Summary

Type Definition It is usually defined as: struct TreeNode { int val; TreeNode* left; TreeNode* right; TreeNode() : val(0), left(nullpt… ...more

November 09, 2024 #LeetCode #C++ #Algorithm #Binary Tree
LeetCode Linked List Question Summary

After solved around 20 questions on leetcode about linked list, I think it is time to summarize everything I learned so far: Type Definition It is usu… ...more

November 09, 2024 #LeetCode #C++ #Algorithm #Linked List
12345 6
Recent
RVO (Return Value Optimization) and deleted move constructors pitfall.
Solve SIOF (Static Initialization Order Fiasco) with Meyer's Singleton.
Re-visit Sorting algorithms with C++.
LeetCode Graph Question Summary
LeetCode Binary Tree Question Summary
LeetCode Linked List Question Summary
Asynchronous Multi-Thread Design Pattern with C++
Type Conversions in C++ and Rust
Precision loss detection in control systems.
Understand routing and NAT with WireGuard VPN.
Ubuntu 24.04 LTS cloud server quick configuration.
Why is std::hash a struct?
Perfect forwarding in C++.
Avoid virtual functions in C++.
How to NOT nest your code.

About Contact Privacy Sitemap

© 2025 Xiahua

Powered by Zola & Abridge