1. map : C++的STL中map是使用树来做查找算法; 时间复杂度:O(log2N)2.hash_map : 使用hash表来排列配对,hash表是使用关键字来计算表位置; 时间复杂度:O(1), 最坏的时间复杂度:O(n)总体来说:hash_map 比 map 查找速度快,而且查找速度.....
分类:
其他好文 时间:
2014-06-28 23:22:16
阅读次数:
293
在STL中,排序是个很重要的话题。1.algorithm 里的sort()只接收RandomAccessIterator用于像vector,dequeue的排序2.像set,map,这种关联式容器,本身就由RBTree维护了有序,只要遍历一遍就行了。3.而list比较特殊一点,由于只有Bidirec...
分类:
其他好文 时间:
2014-06-28 22:09:39
阅读次数:
209
mongodb创建数据库表语句db.createCollection("CollectionName or tableName");db.createCollection("ruiy",{id:1});db.tableName.insert(id:1);mongodb数据库数据删除mongodb修改...
分类:
数据库 时间:
2014-06-28 21:56:39
阅读次数:
278
#include#includeusingnamespacestd;intmain(){vectorv(3);v[0]=2;v[1]=7;v[2]=9;v.insert(v.begin(),8);//在最前面插入新元素。v.insert(v.begin()+2,1);//在迭代器中第二个元素前插入新...
分类:
其他好文 时间:
2014-06-28 20:28:27
阅读次数:
144
周末同学说想弄个基于Baidu地图的应用来, 于是就开始研究这个SDK来. 其中应用有个需求, 需要点击地图上的标记时, 显示一组按钮. 于是按照常规的作法失业了InfoWindow, 如下. //panel is a view, some buttons in it. final InfoWind...
分类:
移动开发 时间:
2014-06-21 07:51:40
阅读次数:
246
登录命令mysql -uroot -p21313新建用户insert into mysql.user(Host,User,Password) values("localhost","phplamp",password("1234"));刷新权限flush privileges;创建数据库create...
分类:
数据库 时间:
2014-06-21 07:39:29
阅读次数:
263
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:
其他好文 时间:
2014-06-21 06:58:22
阅读次数:
186
DECLARE @TAB TABLE( [科室编号] [varchar](50) NULL, [科室编码] [varchar](50) NULL, [科室名称] [varchar](50) NULL, [拼音] [varchar](50) NULL)INSERT INTO @TABSELECT * ...
分类:
数据库 时间:
2014-06-21 06:55:07
阅读次数:
236
source map文件是js文件压缩后,文件的变量名替换对应、变量所在位置等元信息数据文件,一般这种文件和min.js主文件放在同一个目录下。 比如压缩后原变量是map,压缩后通过变量替换规则可能会被替换成a,这时source map文件会记录下这个mapping的信息,这样的好处就是说,在调试的...
分类:
Web程序 时间:
2014-06-21 00:16:42
阅读次数:
268
5.1 You are given two 32-bit numbers, N andM, and two bit positions, i and j. Write a method to insert M into Nsuch that M starts at bit j and ends at...
分类:
其他好文 时间:
2014-06-20 13:51:09
阅读次数:
149