稳重糖豆

文章
4
资源
0
加入时间
2年10月17天

(转)引领Boost(四)Boost::smart_ptr

引领Boost(四)(Boost::smart_ptr)作者:梦在天涯 来源:C++博客   酷勤网收集 2007-09-12摘要酷勤网  std::auto_ptr很多的时候并不能满足我们的要求,比如她不能用在STL的container中。boost的smart_ptr中提供了4种智能指针和2种智能指针数组来作为std::auto_ptr的补充。 一 B...

HDU6318Swaps and Inversions

注意交换次数等于逆序对数。#include<bits/stdc++.h>using namespace std;typedef long long int ll;const int N=100000+10;const int MAX=100000;int bit[N];int a[N];struct node{ int v,id; bool op...