1 program dijkstra; 2 var 3 a:array[1..100,1..100]of integer; 4 flag:array[1..100]of boolean; 5 w,x,n,i,j,min,minn:integer; 6 begin 7 ...
分类:
其他好文 时间:
2015-04-06 06:12:04
阅读次数:
139
原文:Cassandra代替Redis?最近用Cassandra的又逐渐多了,除了之前的360案例,在月初的QCon Shanghai 2013 篱笆网也介绍了其使用案例。而这篇百万用户时尚分享网站feed系统扩展实践文章则提到了Fashiolista和Instagram从Redis迁移到Cassa...
分类:
其他好文 时间:
2015-04-06 06:10:15
阅读次数:
171
这个也是网上搜的,亲自试过,非常好用! 镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在): 1.通过config命令 npm?config?set?registry?https://registry....
分类:
系统相关 时间:
2015-04-06 01:09:47
阅读次数:
304
前一篇博客提到让我很伤心的c应用,由于是一款供用户上传图片的应用,因此必须解决图片存储问题,如果直接将图片存储至服务器,当用户上传图片较多,服务器空间将很快吃紧,同时也没有那么大的带宽,现实中我买的阿里云服务器是最低配置,数据盘才20G,带宽才1M,如果用这样配置的服务器做图片存储,那实在太扯了。于是很自然的想到用图片云存储服务器,通过不断查找资料,最后将目标定位在七牛云和又拍云,在做选择时,主要...
分类:
移动开发 时间:
2015-04-06 01:07:42
阅读次数:
8349
1.TabBar的层次结构
2.自定义TabBar的背景
可以将一个很短的图片拉长作为背景图片,方法:
self.backgroundColor = [UIColor
colorWithPatternImage:[UIImage
imageWithName:@"tabbar_background"]];
- (id)initWithFrame:(CGRect)f...
分类:
其他好文 时间:
2015-04-06 01:07:21
阅读次数:
177
题目大意:
有N张卡,将N张卡分成若干不同的集合,集合不能为空。问:总共有多少种分法。
思路:
参考博文:http://blog.csdn.net/acm_cxlove/article/details/7857671
集合的个数可以为1、2、3、…、N。问题就变为了把N张卡放到i个集合中。
这时候个组合问题,可以用第二类斯特灵数解决。
S(P,K) = S(P-1,K-1) + K*S(P-1,K);
表示P个元素放入K个不可区分的集合中而集合不为空的划分个数。
问题的解就为: ΣS(P,i),(1 <=...
分类:
其他好文 时间:
2015-04-06 01:06:57
阅读次数:
150
抱歉
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 3863 Accepted Submission(s): 1637
Problem Description
非常抱歉,本来兴冲冲地搞一场练习赛,由于我准备不足,出...
分类:
其他好文 时间:
2015-04-06 01:09:28
阅读次数:
147
Pre x goodness of a set string is length of longest common pre x*number of strings in the set. For
example the pre x goodness of the set f000,001,0011g is 6.You are given a set of binary strings. Fin...
分类:
其他好文 时间:
2015-04-06 01:07:22
阅读次数:
178
zoj 3202 Second-price Auction
水题,不解释了,直接贴代码
#include
#include
#include
#include
using namespace std;
struct node{
int x;
int y;
};
struct node number[105];
int cmp(struct node a,struct node b){...
分类:
其他好文 时间:
2015-04-06 01:08:18
阅读次数:
231
一个简单的C#的闰年检测程序1.闰年检测的函数编写当提起检测平年闰年时候,第一反应写出的代码1 public static bool isLeapYear(int year){2 return ((year % 4 == 0 && year % 100 != 0)||(year % 400 ==.....
分类:
其他好文 时间:
2015-04-06 01:03:30
阅读次数:
241
【结构体】 一.认识结构体 //结构体是一种复合的数据结构,是将基础变量类型和复合的变量类型封装成的新的数据结构。 //自定义的类型。 【注】函数是对处理数据的功能的封装。 结构体是对存储数据的数据结构的封装。 将存储数据的数据结构和管理这些数据的方法封装到一起,就形成了类。 ...
分类:
其他好文 时间:
2015-04-06 01:02:30
阅读次数:
254
1、线性存储//Queue.h#ifndef QUEUE_H_#define QUEUE_H_#define ElemType int #define MAXSIZE 100typedef struct _Node{ ElemType data[MAXSIZE]; int front; ...
分类:
其他好文 时间:
2015-04-06 01:03:59
阅读次数:
187
被这玩意坑了2个多小时。-----------------------------------由于 android studio 在建项目时,不会自动识别 so 文件,所以在含有so文件的项目中,需要在 build.gradle 中加入sourceSets { main() { ...
分类:
移动开发 时间:
2015-04-06 01:04:27
阅读次数:
148
up vote 1 down vote favorite I typed:sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/ jdk1.8.0/bin/java" 1It's says alternativ...
分类:
其他好文 时间:
2015-04-06 01:01:09
阅读次数:
226
1 //20150324 练习1 2 import java.util.*; 3 import java.util.regex.Pattern; 4 import java.math.RoundingMode; 5 import java.text.*; 6 import java....
分类:
其他好文 时间:
2015-04-06 01:01:59
阅读次数:
287