C++ http://www.cplusplus.com/http://www.cplusplus.me/*****************容器container vector转自http://blog.csdn.net/qscool1987/article/details/7050487[cpp....
分类:
编程语言 时间:
2014-09-03 16:22:06
阅读次数:
252
源码之前,了无秘密 ——侯杰第四章:序列式容器 C++语言本身提供了一个序列式容器array array:分配静态空间,一旦配置了就不能改变。 vector: 分配动态空间。维护一个连续线性空间,迭代器类型为:Random Access Iterato...
分类:
其他好文 时间:
2014-09-03 11:08:36
阅读次数:
231
17.4编写并测试findbook函数#include#include#include#include#include#include"Sales_data.h"using namespace std;typedef tuple::size_type,vector::const_iterator,v...
分类:
其他好文 时间:
2014-09-02 21:13:15
阅读次数:
133
1613. For Fans of Statistics
Time limit: 1.0 second
Memory limit: 64 MB
Have you ever thought about how many people are transported by trams every year in a city with a ten-million populati...
分类:
其他好文 时间:
2014-09-02 14:10:14
阅读次数:
252
200: 水题
class TaroGrid {
public:
int getNumber(vector );
};
int TaroGrid::getNumber(vector grid)
{
int ans=0;
int black=0,white=0;
int N=grid.size();
for(int i=0;i<N;i++)
{...
分类:
其他好文 时间:
2014-09-02 12:28:14
阅读次数:
208
这个题目开始真正用C++了,因为,数组的分配有限制了,只好用c++中的vector:/*ID: qq104801LANG: C++TASK: sprime*/#include #include #include #include #include #include #include #include...
分类:
其他好文 时间:
2014-09-02 12:03:34
阅读次数:
139
1、std::initializer_list
C++11标准,用法类似vector,...
分类:
其他好文 时间:
2014-09-02 00:22:23
阅读次数:
228
class Solution {
public:
bool wordBreak(string s, unordered_set &dict){
int len = s.length();
vector match(len + 1, false);
match[0] = true;
for (int i = 1; i <= len; i++){
for (int k = 0;...
分类:
其他好文 时间:
2014-09-01 22:49:03
阅读次数:
273
在Vector中 做erase操作就是按照下面的步骤来做的: copy() destory(); 在list容器中 erase操作 destory() deallocate()Vector使用从某种意义上来说内存空间只是有增无减【如果不通过某种技术的话】 而list就像正常操作一样 该释...
分类:
编程语言 时间:
2014-09-01 22:27:03
阅读次数:
187
为了方便对象的操作,java设计了一套API表示数据结构。
线程安全的:Vector Hashtable 但是线程安全也就是不能并发访问。所以效率也低。
线程不安全的: List Map Set 其中List和Set继承了Collection接口。Map没有继承Collection接口 Set:不能...
分类:
其他好文 时间:
2014-09-01 20:55:13
阅读次数:
203