Files
mianshiya/C++ STL面试题.md
2025-12-25 21:05:14 +08:00

15 lines
461 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
C++ 中 vector 的原理resize 和 reserve 的区别是什么size 和 capacity 的区别?
---
C++ 中 deque 的原理?它内部是如何实现的?
---
C++ 中 map 和 unordered_map 的区别?分别在什么场景下使用?
---
C++ 中 list 的使用场景?
---
C++ 中为什么要使用 std::array它有什么优点
---
C++ 中 vector 的 push_back 和 emplace_back 有什么区别?
---
C++ 的迭代器和指针有什么区别?
---