Add remaining flashcards and reference files (qn_01, segment_tree, ds, learning)

This commit is contained in:
2026-05-26 01:30:51 +08:00
parent fa64e776ca
commit f603236a48
10 changed files with 639 additions and 14 deletions
@@ -0,0 +1,20 @@
# C++ Pointers and References - Mastery Checklist
## Core Concepts
Track your understanding of key concepts:
- [ ] Declaration syntax: & and * placement
- [ ] Pointers vs references: mental model
- [ ] Pointer arithmetic
- [ ] const correctness with pointers and references
- [ ] References as function parameters
- [ ] Pointer-to-pointer
- [ ] Null pointers and nullptr
- [ ] Dangling pointers and references
- [ ] Smart pointers (unique_ptr, shared_ptr, weak_ptr)
- [ ] Lvalue references vs rvalue references
- [ ] Move semantics
- [ ] Perfect forwarding
- [ ] Reference collapsing rules
- [ ] Common interview traps