//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
#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
一个程序若要跳到另一个程序。需要在目标程序的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
ImageView是Android中的基础图片显示控件,该控件有个重要的属性是ScaleType,该属性用以表示显示图片的方式,共有8种取值matrix 用矩阵来绘制(从左上角起始的矩阵区域)fitXY 把图片不按比例扩大/缩小到View的大小显示(确保图片会完整显示,并充满View)fitSta...
分类:
移动开发 时间:
2014-07-30 11:39:23
阅读次数:
248
新建model层中 DataType类型的时候,有几个属性creationType,matchType时候需要在右侧选择对应的javaBean,这是时候要在弹出的对话框搜索。此时,只要搜索javaBean的名字就好了,千万不要搜索路径,不然花一百年都找不到的。
分类:
其他好文 时间:
2014-07-29 21:02:42
阅读次数:
211
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_type __CLR_OR_THIS_CALL length() const { // return length of sequence return (_Mysize); } size_type __...
分类:
编程语言 时间:
2014-07-28 13:45:40
阅读次数:
306
/**
* 功能:使用标准库:文本查询程序
* 时间: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
数据结构, 需要考虑两个方面: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