- 博客(3)
- 收藏
- 关注
原创 cell probe model 与 RAM
cell-probe model 计算模型From Algorithms 4th Edition : A model of computation where we only count accesses to a random-access memory large enough to hold the input and consider all other ...
2018-08-23 20:35:15
740
原创 C++ STL max_element()与min_element()
#include <iostream>#include <vector>#include <algorithm>using namespace std;int main(){ vector<int> myvector; for (int i = 0; i < 100; i++) { myvector.push_back(i)...
2018-04-01 16:16:22
517
原创 C++ vector 释放内存的两种方法
待释放vector: vector<valuetype> myvector1.swap方法vector<valuetype>().swap(myvector)2. clear+shrink_to_fitmyvector.clear();myvector.shrink_to_fit();#include <iostream>#include <vector...
2018-03-31 16:14:28
7162
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人