# 分類
容器 | 宣告例子 | 性質 |
---|
vector<C> | vector<string> m_vec; | 循序地址 |
list<C> | list<string> m_lst; | 跳躍地址 |
stack<C> | stack<string> m_stk; | 先入後出 FILO |
queue<C> | queue<string> m_que; | 先入先出 FIFO |
set<C> | set<string> m_set; | 排序結構 |
map<C,D> | map<string,int> m_map; | 排序結構 |
# Vector
vector<C> | #include <vector> |
| vector<string> con; |
| int index; |
| string elm; |
| vector<string>::iterator p; |
| for (vector<string>::iterator p = con.begin(); p != con.end(); p++) { |
| string &str = *p; |
| } |
| for (vector<string>::reverse_iterator p = con.rbegin(); p != con.rend(); p++) { |
| string &str = *p; |
| } |
操作 | 前方 | 後方 | 中間 |
---|
取用 | con.front(); | con.back(); | con.at(index); , con[index]; , *p; |
新增 | con.insert(con.begin(), elm); | con.push_back(elm); | con.insert(p, elm); , con.insert(con.begin() + index, elm); |
移除 | con.erase(con.begin()); | con.pop_back(); | con.erase(p); , con.erase(con.begin() + index); |
- 元素個數:
con.size();
- 清除全部:
con.clear();
- 尋找元素:
p=find(con.begin(),con.end(),data);
# List
list<C> | #include <list> |
| list<string> con; |
| int index; |
| string elm; |
| list<string>::iterator p; |
| for (list<string>::iterator p = con.begin(); p != con.end(); ++p) { |
| string &str = *p; |
| } |
建議使用 ++p
來代替 p++
來提高性能。
| for (list<string>::reverse_iterator p = con.rbegin(); p != con.rend(); ++p) { |
| string &str = *p; |
| } |
建議使用 ++p
來代替 p++
來提高性能。
操作 | 前方 | 後方 | 中間 |
---|
取用 | con.front(); | con.back(); | *p; |
新增 | con.push_front(elm); | con.push_back(elm); | con.insert(p, elm); |
移除 | con.pop_front(); | con.pop_back(); | con.erase(p); |
- 元素個數:
con.size();
- 清除全部:
con.clear();
- 尋找元素:
p=find(con.begin(),con.end(),elm);
# Stack
stack<C> | #include <stack> |
| stack<string> con; |
| #include <stack> |
| #include <vector> |
| #include <iostream> |
| |
| int main() { |
| std::stack<std::string> con; |
| con.push("apple"); |
| con.push("banana"); |
| con.push("cherry"); |
| |
| |
| std::vector<std::string> temp; |
| while (!con.empty()) { |
| temp.push_back(con.top()); |
| con.pop(); |
| } |
| |
| |
| for (const auto& str : temp) { |
| std::cout << str << " "; |
| } |
| std::cout << std::endl; |
| |
| return 0; |
| } |
| #include <stack> |
| #include <vector> |
| #include <iostream> |
| |
| int main() { |
| std::stack<std::string> con; |
| con.push("apple"); |
| con.push("banana"); |
| con.push("cherry"); |
| |
| |
| std::vector<std::string> temp; |
| while (!con.empty()) { |
| temp.push_back(con.top()); |
| con.pop(); |
| } |
| |
| |
| for (auto it = temp.rbegin(); it != temp.rend(); ++it) { |
| std::cout << *it << " "; |
| } |
| std::cout << std::endl; |
| |
| return 0; |
| } |
操作 | 上方 |
---|
取用 | con.top(); |
新增 | con.push(elm); |
移除 | con.pop(); |
- 元素個數:
con.size();
- 清除全部:
while (!con.empty()) {con.pop();}
- 尋找元素:
| std::stack<int> con; |
| con.push(1); |
| con.push(2); |
| con.push(3); |
| |
| |
| bool found = false; |
| int elm = 2; |
| while (!con.empty()) { |
| if (con.top() == elm) { |
| found = true; |
| break; |
| } |
| con.pop(); |
| } |
| if (found) { |
| std::cout << "元素找到!" << std::endl; |
| } else { |
| std::cout << "元素未找到!" << std::endl; |
| } |
如果不想修改原來的 stack,可以考慮將元素複製到一個新的容器中,再進行查找。
# Queue
queue<C> | #include <queue> |
| queue<string> con; |
| #include <queue> |
| #include <iostream> |
| #include <deque> |
| |
| int main() { |
| std::queue<std::string> con; |
| con.push("apple"); |
| con.push("banana"); |
| con.push("cherry"); |
| |
| |
| std::deque<std::string> temp; |
| while (!con.empty()) { |
| temp.push_back(con.front()); |
| con.pop(); |
| } |
| |
| |
| for (const auto& str : temp) { |
| std::cout << str << " "; |
| } |
| std::cout << std::endl; |
| |
| return 0; |
| } |
| #include <queue> |
| #include <iostream> |
| #include <deque> |
| |
| int main() { |
| std::queue<std::string> con; |
| con.push("apple"); |
| con.push("banana"); |
| con.push("cherry"); |
| |
| |
| std::deque<std::string> temp; |
| while (!con.empty()) { |
| temp.push_back(con.front()); |
| con.pop(); |
| } |
| |
| |
| for (auto it = temp.rbegin(); it != temp.rend(); ++it) { |
| std::cout << *it << " "; |
| } |
| std::cout << std::endl; |
| |
| return 0; |
| } |
操作 | 前方 | 後方 | 中間 |
---|
取用 | con.front(); | con.back(); | 不支援 |
新增 | 不支援 | con.push(elm); | 不支援 |
移除 | con.pop(); | 不支援 | 不支援 |
- 元素個數:
con.size();
- 清除全部:
while (!con.empty()) { con.pop(); }
- 尋找元素:
| #include <queue> |
| #include <iostream> |
| #include <vector> |
| #include <algorithm> |
| |
| int main() { |
| |
| std::queue<std::string> con; |
| con.push("apple"); |
| con.push("banana"); |
| con.push("cherry"); |
| |
| std::string elm = "banana"; |
| |
| |
| std::vector<std::string> temp; |
| while (!con.empty()) { |
| temp.push_back(con.front()); |
| con.pop(); |
| } |
| |
| |
| auto it = std::find(temp.begin(), temp.end(), elm); |
| if (it != temp.end()) { |
| std::cout << "Found: " << *it << std::endl; |
| } else { |
| std::cout << "Not found!" << std::endl; |
| } |
| |
| return 0; |
| } |
# Set
set<C> | #include <set> |
| set<string> con; |
| int index; |
| string elm; |
| set<string>::iterator p; |
| for (set<string>::iterator p = con.begin(); p != con.end(); p++) { |
| string &str = *p; |
| } |
| for (set<string>::reverse_iterator p = con.rbegin(); p != con.rend(); p++) { |
| string &str = *p; |
| } |
操作 | 前方 | 後方 | 中間 |
---|
取用 | *con.begin(); | *con.rbegin(); | *p; |
移除 | con.erase(con.begin()); | con.erase(--con.end()); | con.erase(p); |
新增操作: con.insert(elm);
用來插入元素並保持排序。
- 元素個數:
con.size();
- 清除全部:
con.clear();
- 尋找元素:
p=con.find(elm);
# Map
map<C> | #include <map> |
| map<string, int> con; |
| string data; |
| int value; |
| map<string, int>::iterator p; |
| for (map<string, int>::iterator p = con.begin(); p != con.end(); p++) { |
| string &str = (*p).first; |
| int &val = (*p).second; |
| } |
| for (map<string, int>::reverse_iterator p = con.rbegin(); p != con.rend(); p++) { |
| string &str = (*p).first; |
| int &val = (*p).second; |
| } |
操作 | 前方 | 後方 | 中間 |
---|
取用 | *con.begin(); | *con.rbegin(); | *p; |
移除 | con.erase(con.begin()); | con.erase(--con.end()); | con.erase(p); |
元素新增: con[data]=value;
新增操作: con.insert(pair<string,int>(data,value));
可以插入一個鍵值對並保持排序。
元素取用: con[data];
, (*p).first
, (*p).second
- 元素個數:
con.size();
- 清除全部:
con.clear();
- 尋找元素:
p=con.find(data);