/** ?? * Generate the list of files and make them into FileSplits. ?? * @param job the job context ?? * @throws IOException ?? */ ? public List<InputSplit> getSplits(JobContext job) throws...
分类:
其他好文 时间:
2015-01-09 14:24:52
阅读次数:
203
上一话中实现了两个控制器间的传值,最终效果如图:
这是我们的主页面:
在ViewController中我们主页显示的内容是放到不同的数组中的:
var restaurantNames = ["cg1","cg2","cg3","cg4","cg5","cg6","cg7","cg8","cg9","cg10","cg11"]
var restaurantImages ...
分类:
移动开发 时间:
2015-01-09 14:24:08
阅读次数:
333
上一篇,主要介绍了UI部分,其实根本没有UI,自己做这个游戏也是就是实现一下逻辑功能,其实游戏的逻辑是最难的,UI谁都可以学会,逻辑却是需要理解的!
主要的逻辑:
选择了二维数组 与 双端队列(deque);因为双端队列(queue)可以操作[]下标,用起来比较方便:
int tempArray[Count][Count];
memcpy(tempArray,m_nArray,sizeof...
分类:
编程语言 时间:
2015-01-09 14:24:37
阅读次数:
475
方式一:使用putExtra,在MainActivity中传输数据,在SecondActivity中输出数据:
package com.dystu.intentdemo;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;...
分类:
其他好文 时间:
2015-01-09 14:24:09
阅读次数:
133
Application 中 private RequestQueue mRequestQueue;
private static AppController mInstance;
@Override
public void onCreate() {
super.onCreate();
mInstance = this;
}
/**
* 锁定的是本类
*
* @r...
分类:
其他好文 时间:
2015-01-09 14:23:58
阅读次数:
108
题目:
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.
For example, given the following triangle
[
[2],
[3,4...
分类:
编程语言 时间:
2015-01-09 14:23:26
阅读次数:
207
Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.
If such arrangement is not possible, it must rearrange it as the lowest possible o...
分类:
其他好文 时间:
2015-01-09 14:22:04
阅读次数:
201
模拟在广义上是指使用模型复制现实的过程。在地统计中,模拟是随机函数(表面)的实现,其与生成该模拟的样本数据拥有相同的地统计要素(使用均值、方差和半变异函数来度量)。...
分类:
其他好文 时间:
2015-01-09 14:21:58
阅读次数:
199
Configuration是干嘛的
Configuration就像是Mybatis的总管,Mybatis的所有配置信息都存放在这里,此外,它还提供了设置这些配置信息的方法。Configuration可以从配置文件里获取属性值,也可以通过程序直接设置。Configuration里可供配置的属性有:
1. properties属性
1) 配置示例
[html]...
分类:
其他好文 时间:
2015-01-09 14:23:30
阅读次数:
135
上一章节说道,解析mybatis的配置文件的最后一步是解析mapper元素。每个mapper元素对应一个mapper配置文件,这一章节就来讲讲这个mapper配置文件是如何解析的。
Mapper文件里有什么
mapper配置文件是配置sql映射的地方,它看起来就像下面这个样子:
[html]
view plaincopy
xml version="1.0" enco...
分类:
移动开发 时间:
2015-01-09 14:24:09
阅读次数:
256
简述:
记录配置nodejs-log4js日志输出
参考: http://cnodejs.org/topic/521ee22abee8d3cb12fc1f02
https://github.com/nomiddlename/log4js-node/wiki/Date%20rolling%20file%20appender
步骤:
...
分类:
Web程序 时间:
2015-01-09 14:24:05
阅读次数:
227
1.main.html
框架链接标志
对不起浏览器不支持框架
2.menu.html
目录
目录
链接到第一页
链接到第二页
3.page1.html
这是第一页1111111!
4.page2.html
这是第二页111111111!...
分类:
Web程序 时间:
2015-01-09 14:23:25
阅读次数:
238
本文是SharePoint Workflow架构的系列部分。介绍Event Process 和Event Pipeline。提交一个Task的时候,是如何和workflow实例通信的?...
分类:
其他好文 时间:
2015-01-09 14:23:29
阅读次数:
227
Harry and Magical Computer
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
...
分类:
其他好文 时间:
2015-01-09 14:20:44
阅读次数:
152
键盘事件监听 UIKeyboardWillShowNotification
[[NSNotificationCenter
defaultCenter] addObserver:self
selector:@selector(keyboardWillShown:)
name:UIKeyboardWillShowNotification
object:nil];
keyboar...
分类:
移动开发 时间:
2015-01-09 14:22:51
阅读次数:
132
问题:有代价的单源最短路径,并要求存储路径。(求最短的路径,并使代价最小)特点:* 存储路径:决定了难以用dijkstra,可以用flody,用path[i][j]表示 i 想走到 j 迈出的第一步。假设k是 i->j 的中间节点,更新时候用path[i][j] = path[i][k],具体做法见link。但是flody比较耗时(O(N^3))* 有代价:如果想用flody的话,有要求代价最小,...
分类:
其他好文 时间:
2015-01-09 14:20:51
阅读次数:
191