cocos2d-x 3.2 之 三消类游戏——万圣大作战 (第四篇)...
分类:
其他好文 时间:
2015-01-27 23:36:23
阅读次数:
325
韩大卫@吉林师范大学
2015.1.27.
转载请表明出处
*********************************************
uboot 和linux 下flash 的写入速度不一样, 主要原因是两者使用的延迟最小延时时间不一样. linux比较大. 原因如下:
flash 芯片手册中有两个重要的时间参数:
...
分类:
系统相关 时间:
2015-01-27 23:34:12
阅读次数:
375
题目链接:Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters...
分类:
其他好文 时间:
2015-01-27 23:33:44
阅读次数:
176
题目链接:Median of Two Sorted Arrays
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
这...
分类:
其他好文 时间:
2015-01-27 23:34:01
阅读次数:
169
题目链接:Longest Palindromic Substring
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic ...
分类:
其他好文 时间:
2015-01-27 23:35:02
阅读次数:
144
介绍将字符串转化为数值的工具类ParseUtil 和 获取request参数值类ParseRequest,这两个类在做后台项目中还是比较有用的。...
分类:
Web程序 时间:
2015-01-27 23:33:23
阅读次数:
208
安装可以参考http://blog.csdn.net/jasonleesjtu/article/details/8211692 过程大致一样。
VTK 6.1 相对于VTK 5 在目录结构方面有很大的改动,很多lib文件的名字都换掉了。所以配置部分按上文无法成功。此时可以借助CMake配置文件。
cmake_minimum_required(VERSION 2.8.5 FATA...
分类:
其他好文 时间:
2015-01-27 23:35:41
阅读次数:
631
大概介绍
redis 客户端设计主要是存储客户的链接,请求,请求解析的命令,执行结果。先看server的结构和client的结构,server里面有多个client,相当于一个服务端可以连多个客户端,服务端根据事件触发模式依次处理客户端的请求。
server结构
struct redisServer {
/* General */
// 配置文件的绝对路径
cha...
分类:
其他好文 时间:
2015-01-27 23:35:08
阅读次数:
1166
七、@RequestBody 和 @ResponseBody
(一)@RequestBody:
1、作用:
1)该注解用于读取Request请求的body部分数据,使用系统默认配置的HttpMessageConverter进行解析,然后把相应的数据绑定到要返回的对象上。
2)再把HttpMessageConverter返回的对象数据绑定到 controller中方法的参数上。
2、使用时机:
1)GET、POST方式提时, 根据request header Content-Type的值来判断:
①、ap...
分类:
编程语言 时间:
2015-01-27 23:34:58
阅读次数:
624
static int __init acpi_init(void)
{
int result;
if (acpi_disabled) {
printk(KERN_INFO PREFIX "Interpreter disabled.\n");
return -ENODEV;
}
acpi_kobj = kobjec...
分类:
其他好文 时间:
2015-01-27 23:35:26
阅读次数:
332
cat /etc/cgconfig.conf
#
# Copyright IBM Corporation. 2007
#
# Authors: Balbir Singh balbir@linux.vnet.ibm.com>
# This program is free software; you can redistribute it and/or modify it
...
分类:
系统相关 时间:
2015-01-27 23:35:05
阅读次数:
268
自定义大头针Annotation以及2种导航划线的方法介绍...
分类:
移动开发 时间:
2015-01-27 23:34:05
阅读次数:
268
主布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="ma...
分类:
移动开发 时间:
2015-01-27 23:32:26
阅读次数:
211
题目大意:奶牛喜欢站成一排吃饲料,有的奶牛喜欢靠在一起,他们最多距离D米远。
有的奶牛不喜欢靠在一起,他们最少距离D米远才可以。给你一系列的约束条件,问:
如果在上述条件下,奶牛站不成一排,则输出"-1",如果能站成一排,但是第1头牛~
第N头牛的距离无限远,则输出"-2",如果满足条件,并且第1头牛~第N头牛之间存在
实际距离,则输出第1头牛~到第N头牛之间的能达到的最远距离。
思路:直接的差分约束系统,设牛u和牛v的位置为u和v。
第1条:设牛u和牛v最多距离w米远,转换为:v - u <= w。
第2...
分类:
其他好文 时间:
2015-01-27 23:34:44
阅读次数:
238
今天配置了一下mac的环境, 发现我的adt里面竟然没有ndk路径,
解决方案如下:
下载补丁包, 百度网盘
http://pan.baidu.com/s/1nt9PrVb 密码y1uv
把补丁包放到eclipse下面的plugins
重启eclipse, OK搞定一切...
题目大意:两个队PK,弱对弱,强对强,赢了得2分,平了得1分,输了木有分。
输出最终得分对比。
思路:。。。...
分类:
其他好文 时间:
2015-01-27 23:32:51
阅读次数:
132