——Java培训、Android培训、iOS培训、.Net培训、期待与您交流! ——
1:文件的合并SequenceInputStream(读取多个文件,写入一个文件中)
获取Enumeration有两种方式
1.1:Vector ve=new Vector();
Enumeration...
分类:
其他好文 时间:
2015-05-22 09:47:49
阅读次数:
111
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long long
#define FOR(i, x, y) for(int i=x;i<=y;i++)
using namespace std;
const int MAXN ...
分类:
其他好文 时间:
2015-05-22 09:47:14
阅读次数:
137
1.1本博文简介
前面降到了将消息广播给多个Consumer,本博文主要是对消息进行固定点的传输,每个Consumer从消息队列中获取固定类型的消息。
1.2Bindings
在前面的代码中,咱们写过这样的代码:
channel.queue_bind(exchange=exchange_name,queue=queue_name)
一个binding 是excha...
分类:
编程语言 时间:
2015-05-22 09:47:11
阅读次数:
193
责任链模式的英文是:Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request. Chain the receiving objects and pass the request along the chain util an...
分类:
其他好文 时间:
2015-05-22 09:48:07
阅读次数:
359
Android开发中的设计模式—单例模式的详细解释:
1. 单例模式的特点:
(1).保证一个类只有一个实例
(2).提供一个能访问到他的全局访问点。
(3).构造函数声明为私有的,从而阻止了在类外创建对象
2. 种类:
(1).饿汉式单例模式
(2).懒汉式单例模式
3. 代码分析:
(1).饿汉式单例模式: /...
分类:
移动开发 时间:
2015-05-22 09:46:07
阅读次数:
188
基本概念:service是android四大组件之一,运行在后台执行耗时操作,并不提供用户界面。其他组件如acticity可以通过startService启动该组件,也可以通过bindService启动并把绑定该组件进行通信。使用场景后台下载文件,以及播放音乐等注意service运行在主线程中,他不会创建属于自己的线程,也不是运行在独立的线程中,所以在使用的时候,需要自己创建线程,而不应该直接使用,...
分类:
移动开发 时间:
2015-05-22 09:46:56
阅读次数:
178
这一题,简单的广搜或者深搜都可以搞定,时间复杂度都差不多。
我用的是广搜。题目的意思是:@是一个人的起始位置,#不可以走,. 可以走,求出可以走的位置的个数。
一开始没有用结构体来存储坐标,直接用的是z = x * 10 + y;将z入队,结果错了,原因是在取余整除的时候会出错。改用结构体就OK了。
下面是AC的代码:
#include
#include
#include
using...
分类:
其他好文 时间:
2015-05-22 09:47:49
阅读次数:
114
Description
小平在给弟弟检查英语作业时时,发现每个英语句子单词之间的空格个数不等,请你编程帮他把句子中多余的空格去掉,使每个单词之间只保留一个空格,首尾的空格也去掉。
部分代码已给定如下,只需要提交缺失的代码。
#include
int main()
{
void delSpace(char sentence[]);
char sentenc...
分类:
其他好文 时间:
2015-05-22 09:48:14
阅读次数:
106
这一题,简单的贪心就OK了。
下面是AC的代码:
#include
#include
#include
using namespace std;
class data
{
public:
int price, height;
};
int M, N;
data Date[1005];
int cmp(const data &a, const data &b)
{
re...
分类:
其他好文 时间:
2015-05-22 09:47:46
阅读次数:
124
汽车比赛
Time Limit: 1000 MS
Memory Limit: 65536 K
Total Submit: 388(95 users)
Total Accepted: 146(80 users)
Rating:
Special Judge: No...
分类:
其他好文 时间:
2015-05-22 09:46:52
阅读次数:
107
final关键字既可以用来修饰基本变量,引用也可以用来修饰方法和类。在修饰不同的对象时有不同的含义,很容易搞混淆,在此做一个小结。了解一下继承情况下变量的初始化和类的加载机制,也能让我们对程序运行时发生的一切有一个全局性的把握。一。final关键字
1.1 final关键字修饰变量
final关键字类似于C++中的const关键字,当它修饰基本变量时表明该变量一旦被初始化为...
分类:
编程语言 时间:
2015-05-22 09:45:14
阅读次数:
158
这一周开始学习cocos2d-x,刚开始就碰到了一些问题,新建完工程后,自己给工程添加新的文件,有两种方式:
第一种是使用VS的类向导,让软件帮我们把需要添加的类加入到工程,可以一次把头文件和cpp文件都添加进去,然后我们在HelloWorldScene.cpp的开头使用#include""时,会报出错误提醒“无法打开源文件 **.h”,也就是无法打开我们刚才为工程添加的文件,这是为什么...
分类:
其他好文 时间:
2015-05-22 09:45:00
阅读次数:
155
//母函数模板
//形如(1+x^1+x^2+x^3+....+x^n)*(1+x^2+x^4+x^6+....+x^n)*......(1+x^m+x^2m+x^3m+....+x^n)
#include
using namespace std;
const int lmax=10000;
int c1[lmax+1],c2[lmax+1];
int main()
{
int n,i,j,...
分类:
其他好文 时间:
2015-05-22 09:47:04
阅读次数:
112
外部插件:
$.fn.tinytip = function(text, customOptions) {
debugger;
if (text && typeof text === 'object'){
customOptions = text;
text = customOptions.tooltip;
...
分类:
编程语言 时间:
2015-05-22 09:45:31
阅读次数:
121
基于mongodb3.0.1, 下载mongo-java-driver-3.0.1.jarpackage test.mongodb;
import java.util.HashMap;
import java.util.Map;
import org.bson.Document;
import org.bson.conversions.Bson;
import com.mongodb.Mon...
分类:
数据库 时间:
2015-05-22 09:47:32
阅读次数:
247
本文是 tracker.conf 配置文件的详细介绍。
1 基本配置
disable
#func:配置是否生效
#valu:true、false
disable=false
bind_addr
#func:绑定IP
#valu:IP地址
bind_addr=192.168.6.102
port
#func:服务端口
#valu:端口整数值
port=22122
...
分类:
其他好文 时间:
2015-05-22 09:45:21
阅读次数:
303
问题描述点此链接
Given a 2D board and a list of words from the dictionary, find all words in the board.Each word must be constructed from letters of sequentially adjacent cell, where “adjacent” cells are tho...
分类:
其他好文 时间:
2015-05-22 09:47:17
阅读次数:
108