# 參考資料
運算思維與程式設計 CH6-電腦與程式語言
http://ct.thu.edu.tw/file/pbl/CH6.pdf
整合開發環境
https://zh.wikipedia.org/wiki/%E9%9B%86%E6%88%90%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83
編譯器
https://zh.wikipedia.org/wiki/%E7%B7%A8%E8%AD%AF%E5%99%A8
機器語言
https://zh.wikipedia.org/wiki/%E6%9C%BA%E5%99%A8%E8%AF%AD%E8%A8%80
C和C++運算子
https://zh.wikipedia.org/wiki/C%E5%92%8CC%2B%2B%E9%81%8B%E7%AE%97%E5%AD%90
让Dev C\++支持C++11
https://blog.csdn.net/u011500062/article/details/44628441
Dev-C++ 手動更新編譯器至 G++ 8.2.0
https://blog.yangjerry.tw/2019/11/30/devcplusplus-gplusplus-8/
C++
https://zh.wikipedia.org/wiki/C%2B%2B
为什么尽量不要使用using namespace std?
https://www.zhihu.com/question/26911239
你是否真的了解main()函數?
https://kknews.cc/tech/89a5bag.html
C 語言為什麼是 int main() { ... }
https://blog.moli.rocks/2016/12/15/why-should-main-return-in-c/
不得不說的“return 0;”
https://www.itread01.com/content/1505890834.html
「C語言」int main還是void main?傻傻分不清楚,其實是有學問的
https://kknews.cc/code/4vq32m2.html
C/C++ - Vector (STL) 用法與心得完全攻略
https://mropengate.blogspot.com/2015/07/cc-vector-stl.html
emplace_back() 和 push_back 的区别
https://blog.csdn.net/xiaolewennofollow/article/details/52559364
C++ STL vector添加元素(push_back()和emplace_back())详解
http://c.biancheng.net/view/6826.html
[教學]C++ Vector詳細用法
https://dangerlover9403.pixnet.net/blog/post/98733652
(C++) 別再用dynamic array與pointer了! 趕快學STL的vector與iterator!
http://hackgrass.blogspot.com/2018/04/c-dynamic-arraypointer-stlvectoriterator.html
Initialize a vector in C++ (6 different ways)
https://www.geeksforgeeks.org/initialize-a-vector-in-cpp-different-ways/
set vs unordered_set in C++ STL
https://www.geeksforgeeks.org/set-vs-unordered_set-c-stl/
【轉】C++ STL容器時間複雜度下的最佳選擇
https://www.twblogs.net/a/5c3b2cddbd9eee35b21dd015
關聯性容器
https://zh.wikipedia.org/wiki/%E5%85%B3%E8%81%94%E6%80%A7%E5%AE%B9%E5%99%A8
C++ std::set 用法與範例
https://shengyu7697.github.io/blog/2021/03/22/std-set/
How to convert vector to set?
[closed]https://stackoverflow.com/questions/20052674/how-to-convert-vector-to-set
C++ set for user define data type
https://www.geeksforgeeks.org/cpp-set-for-user-define-data-type/
STL vector中的swap方法(33)
https://blog.csdn.net/qq844352155/article/details/38686549
【筆記】常用C++ algorithm:lower_bound & upper_bound
https://yuihuang.com/cpp-algorithm-lower-bound-upper-bound/
C++ vector data()用法及代碼示例
https://vimsky.com/zh-tw/examples/usage/vector-data-function-in-c-stl.html
What is the difference between v[0], v.begin() and v.data() of a vector v?
https://stackoverflow.com/questions/58464546/what-is-the-difference-between-v0-v-begin-and-v-data-of-a-vector-v
(原創) iterator到底是不是pointer? (C/C++) (STL)
https://www.cnblogs.com/oomusou/archive/2008/07/21/stl_iterator_pointer.html
C++ STL 學習總結(全面)
https://jasonblog.github.io/note/c++/c++_stl_xue_xi_zong_7d5028_quan_976229.html
Big-O Complexity Chart
https://www.bigocheatsheet.com/
STL: VECTOR SIZE VS CAPACITY VS MAX_SIZE
https://sollu.wordpress.com/2010/03/25/stl-vector-size-vs-capacity-vs-max_size/
Stack: Intro(簡介)
http://alrightchiu.github.io/SecondRound/stack-introjian-jie.html
how to hold user defined type in STL stack?
https://stackoverflow.com/questions/16430470/how-to-hold-user-defined-type-in-stl-stack
std::stack::stack
http://www.cplusplus.com/reference/stack/stack/stack/
C 學習筆記:STL 容器一些底層機制
https://codertw.com/%E7%A8%8B%E5%BC%8F%E8%AA%9E%E8%A8%80/532067/
Initialize Stack in C++ STL
https://iq.opengenus.org/stack-initialization-cpp-stl/
C++ stack(STL stack)用法详解
http://c.biancheng.net/view/478.html
C++ STL 學習總結(全面)
https://jasonblog.github.io/note/c++/c++_stl_xue_xi_zong_7d5028_quan_976229.html
Analysis of time and space complexity of C++ STL containers
https://www.geeksforgeeks.org/analysis-of-time-and-space-complexity-of-stl-containers/
C++ STL Complexities
https://alyssaq.github.io/stl-complexities/
STL Container Performance
http://john-ahlgren.blogspot.com/2013/10/stl-container-performance.html
std::map
https://en.cppreference.com/w/cpp/container/map
std::map::map
https://www.cplusplus.com/reference/map/map/map/
C++ std::queue 用法與範例
https://shengyu7697.github.io/blog/2020/02/18/std-queue/
Different ways to initialize a queue in C++ STL
https://iq.opengenus.org/different-ways-to-initialize-queue-cpp/
switch 條件判斷
https://openhome.cc/Gossip/CppGossip/switchStatement.html
switch statement
https://en.cppreference.com/w/cpp/language/switch
C/C++ 三元運算子
https://shengyu7697.github.io/blog/2019/12/27/Cpp-ternary-operator/
程式語言中負數取餘的問題
https://www.itread01.com/content/1544306778.html
###### tags: `參考資料`