码迷,mamicode.com
首页 >  
搜索关键字:container    ( 5967个结果
非常方便的circular_buffer
编程时候经常需要使用定长的容器(fixed size container),比如有时日志只需要保留一周或一个月,或者缓存一天上游发来的数据流。实现一个简单的旋转容器只需要像下面这样就好:std::vector vec(size);vec[i % size] = newelem;boost的circu...
分类:其他好文   时间:2015-01-29 14:20:20    阅读次数:150
LeetCode --- 11. Container With Most Water
题目链接:Container With Most Water Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is ...
分类:其他好文   时间:2015-01-29 12:48:22    阅读次数:226
C++回顾map的用法
map是C++的STL中存储key-value键值对数据结构的最基础的模板类,相对于multimap可以重复的key值,map的key是非重复的。 C++的reference这样说明的:std::mapis a sorted associative container that contain...
分类:编程语言   时间:2015-01-28 19:16:48    阅读次数:144
好记性不如烂笔头3-JAVA生成缩略图
电子商务网站等系统,有大量的图片;从加载速度和流量等角度出发,会使用比较多的缩略图。 1、创建图片的缩略图源代码 package com.daily;   import java.awt.Container; import java.awt.Graphics2D; import java.awt.Image; import java.awt.MediaTracker; import...
分类:编程语言   时间:2015-01-28 17:56:50    阅读次数:222
等待层
/** * 等待层 */ setWaitPanel:function(){ if(document.getElementById("loader_container")!=null){ ...
分类:其他好文   时间:2015-01-28 17:36:03    阅读次数:243
web标准化设计:常用的CSS命名规则
常用的CSS命名规则头:header内容:content/container尾:footer导航:nav侧栏:sidebar栏目:column页面外围控制整体布局宽度:wrapper左右中:leftrightcenter登录条:loginbar标志:logo广告:banner页面主体:main热点:...
分类:Web程序   时间:2015-01-28 14:26:26    阅读次数:196
Sequential Container
Notes from C++ PrimerInitializationWhen copy a container to another, the containertype and element type must be match at the same time:vector ivec;vec...
分类:其他好文   时间:2015-01-28 12:57:37    阅读次数:157
Leetcode#11 Container With Most Water
原题地址最朴素的想法就是,枚举容器的左边界和右边界,总能找到解,不过时间复杂度是O(n^2)的。改进I:从左向右枚举左边界,在此基础上从右向左枚举右边界,一旦右边界高度>=左边界高度就可以停止枚举了,因为继续枚举下去找到的矩形肯定面积更小。比如下图,左边界在位置0,高度为height[0]=3,那么...
分类:其他好文   时间:2015-01-28 12:53:58    阅读次数:131
Camel概念【Exchange 】
Exchange An exchange in Camel is the message’s container during routing. (在camel中,exchange被当做路由交换的容器) An exchange also provides support for the various types of interactions betwee...
分类:其他好文   时间:2015-01-27 23:37:38    阅读次数:558
BootStrap 学习笔记一
BootStrap学习笔记一:学习工具:BootStrap中文文档:http://v3.bootcss.com/css/#type-lists1.HTML5文档类型 ...2.为了确保适当的绘制和触屏缩放,需要在之中添加 viewport 元数据标签。3.两种容器//.container 类用于固....
分类:其他好文   时间:2015-01-27 20:12:32    阅读次数:145
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!