码迷,mamicode.com
首页 >  
搜索关键字:size_type    ( 266个结果
单链表练习
//code:#include#includeusing namespace std;typedef int status;typedef int elemType;typedef struct lNode{elemType num;struct lNode *next;}lNode,*linkNo...
分类:其他好文   时间:2014-07-30 23:13:45    阅读次数:189
0-1背包
#include #include int f[1001][1001];int c[1001];int w[1001];int N,V;int main(){ int t; int i,j; scanf("%d",&t); while(t--) { mem...
分类:其他好文   时间:2014-07-30 14:43:03    阅读次数:209
APP之间的跳转
一个程序若要跳到另一个程序。需要在目标程序的plist文件里面修改:打开info.plist,添加一项URL types展开URL types,再展开Item0,将Item0下的URL identifier修改为URL Scheme展开URL Scheme,将Item0的内容修改为shashan.S...
分类:移动开发   时间:2014-07-30 12:00:23    阅读次数:202
Android:属性scaleType与图片的显示
ImageView是Android中的基础图片显示控件,该控件有个重要的属性是ScaleType,该属性用以表示显示图片的方式,共有8种取值matrix 用矩阵来绘制(从左上角起始的矩阵区域)fitXY 把图片不按比例扩大/缩小到View的大小显示(确保图片会完整显示,并充满View)fitSta...
分类:移动开发   时间:2014-07-30 11:39:23    阅读次数:248
dorado中的creationType选择类型
新建model层中 DataType类型的时候,有几个属性creationType,matchType时候需要在右侧选择对应的javaBean,这是时候要在弹出的对话框搜索。此时,只要搜索javaBean的名字就好了,千万不要搜索路径,不然花一百年都找不到的。
分类:其他好文   时间:2014-07-29 21:02:42    阅读次数:211
C++ Notes 1 - size_type - Accelerated Ch3
1. 为什么用string::size_type而不是int?--Why usestring::size_type?intis supposed to work! it holds numbers!--A short holds numbers too. So does a signed char....
分类:编程语言   时间:2014-07-29 17:37:52    阅读次数:278
c++ string的size()函数和length()函数
C++标准库中的string中两者的源代码如下: size_type __CLR_OR_THIS_CALL length() const { // return length of sequence return (_Mysize); } size_type __...
分类:编程语言   时间:2014-07-28 13:45:40    阅读次数:306
【足迹C++primer】41、文本查询程序
/** * 功能:使用标准库:文本查询程序 * 时间:2014年7月10日09:10:15 * 作者:cutter_point */ #include #include #include #include #include #include #include #include using namespace std; using line_no=vector::size_type; /**...
分类:编程语言   时间:2014-07-11 00:16:17    阅读次数:305
java 基础数据结构
数据结构, 需要考虑两个方面:1. 每个元素具体的存储方法 (java中是一个对象)2. 元素之间的关系如何实现存储 (java中也是一个对象)另外在java中, 已经可以把跟数据结构有关的一些方法写到一个类里了.线性表顺序表c语言: 借助数组实现#define INIT_SIZE 100;type...
分类:编程语言   时间:2014-06-13 16:19:21    阅读次数:282
字符串查找匹配
vector split(const string& src, const string& separator){vectordest;string str = src;string substring;string::size_type start = 0, index;do{index = st...
分类:其他好文   时间:2014-06-10 20:35:36    阅读次数:238
266条   上一页 1 ... 24 25 26 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!