一:unique Path
题目:
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).
The robot can only move either down or right at any point in time. The robot i...
分类:
其他 时间:
2015-04-06 17:21:13
收藏:
0 评论:
0 赞:
0 阅读:
151
一、下载 www.mongodb.org
二、安装
下载下来之后解压在没有空格的目录中,我的目录是D:\Program Files\MongoDB然后windows开始里面输入CMD,选择cmd.exe 右键选择以管理员身份运行(这点很重要,因为如果默认用户不是超级管理员那么没有办法将MongoDB安装为服务)
然后切换到安装目录\bin 目录下面
然后输入:...
分类:
数据库技术 时间:
2015-04-06 17:21:06
收藏:
0 评论:
0 赞:
0 阅读:
126
http://acm.hdu.edu.cn/showproblem.php?pid=4292
Problem Description
You, a part-time dining service worker in your college’s dining hall, are now confused with a new problem: serve as many pe...
分类:
其他 时间:
2015-04-06 17:21:05
收藏:
0 评论:
0 赞:
0 阅读:
142
#include;
#include;
void huiwen( const char* str)
{
int i;
int flag;
int len=strlen(str);
char *ch=str;
while(*ch!='\0')
{
ch++;
}
ch--;
for(i=1;i<=len/2;i++)
{
if(*ch==*str)
{
fla...
分类:
编程语言 时间:
2015-04-06 17:20:42
收藏:
0 评论:
0 赞:
0 阅读:
325
在hibernate官方文档中给出了 如下注解方式:
5.1. Mapping declaration
Object/relational mappings can be defined in three approaches:
using Java 5 annotations (via the Java Persistence 2 annotations)
u...
分类:
Web开发 时间:
2015-04-06 17:20:33
收藏:
0 评论:
0 赞:
0 阅读:
383
之前lvm的博客也写过几篇,今天再来写一篇关于lvm的管理方面的总结。
操纵lv:
1、卸载lv umount "挂载目录"
2、扩展lv lvextend -L +500M /dev/lv00/lv01
3、重设lv的大小 lvresize -L 5G /dev/lv00/lv01
...
分类:
系统服务 时间:
2015-04-06 17:20:22
收藏:
0 评论:
0 赞:
0 阅读:
312
简单题不解释, 维护一个进位即可public class Solution {
public int[] plusOne(int[] digits) {
int c = 1;
for(int i = digits.length - 1; i >=0; i --){
if(c == 0)break;
digits[i]...
分类:
其他 时间:
2015-04-06 17:20:12
收藏:
0 评论:
0 赞:
0 阅读:
104
题目:leetcode
Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.
For example,
Given [100, 4, 200, 1, 3, 2]...
分类:
其他 时间:
2015-04-06 17:20:02
收藏:
0 评论:
0 赞:
0 阅读:
141
这种题的考察重点并不在于问题本身,而是要注意corner case的处理,整数一般有两点,一个是正负符号问题,另一个是整数越界问题。思路比较简单,就是先去掉多余的空格字符,然后读符号(注意正负号都有可能,也有可能没有符号),接下来按顺序读数字,结束条件有三种情况:(1)异常字符出现(按照C语言的标准是把异常字符起的后面全部截去,保留前面的部分作为结果);(2)数字越界(返回最接近的整数);(3)字...
分类:
其他 时间:
2015-04-06 17:19:53
收藏:
0 评论:
0 赞:
0 阅读:
114
qsort函数:运用填写:
第一个为数组初始地址
第二个为待排序数组的个数
第三个为每个字节的大小(建议sizeof(a[0]))
第四个为函数指针(比较函数)比较函数:
一般来说比较函数的命名没有硬性的规定,但是我们一般还是用cm...
分类:
其他 时间:
2015-04-06 17:19:46
收藏:
0 评论:
0 赞:
0 阅读:
91
http://acm.hdu.edu.cn/showproblem.php?pid=4289
Problem Description
You, the head of Department of Security, recently received a top-secret information that a group of terrorists is planning ...
分类:
其他 时间:
2015-04-06 17:19:33
收藏:
0 评论:
0 赞:
0 阅读:
152
Problem Description
呃......变形课上Harry碰到了一点小麻烦,因为他并不像Hermione那样能够记住所有的咒语而随意的将一个棒球变成刺猬什么的,但是他发现了变形咒语的一个统一规律:如果咒语是以a开头b结尾的一个单词,那么它的作用就恰好是使A物体变成B物体.
Harry已经将他所会的所有咒语都列成了一个表,他想让你帮忙计算一下他是否能完成老师的作业,将一个B(...
分类:
其他 时间:
2015-04-06 17:19:23
收藏:
0 评论:
0 赞:
0 阅读:
139
输入数据
输入的第一行是序列的长度N (1 <= N <= 1000)。第二行给出序列中的N 个整数,这些整数的取值范围都在0 到10000。
输出要求
最长上升子序列的长度。
输入样例
7
1 7 3 5 9 4 8
输出样例
4import java.util.Scanner;
public class TheMaxRiseSeries { public static vo...
分类:
其他 时间:
2015-04-06 17:19:13
收藏:
0 评论:
0 赞:
0 阅读:
153
cocos2d-x在2.x以后的版本是使用Python命令创建的,具体步奏如下
1.下载Python,安装
2..配置Python的环境变量,系统的path变量。直接拷贝D:/ptyhon27目录粘贴就行
3.进入这个目录》E:\cocos2d-x\cocos2d-x-2.2.6\tools\project-creator (我的cocos2D-x安装在E盘)
4使用命令行执行create...
分类:
其他 时间:
2015-04-06 17:18:52
收藏:
0 评论:
0 赞:
0 阅读:
169
Focus on technology, enjoy life!—— QQ:804212028
浏览链接:http://blog.csdn.net/y18334702058/article/details/44624305
主题:AIDL服务
-AIDL(Android Interface Definition Language)即Android接口定义语言。Android系统中的进程之间不能...
分类:
移动平台 时间:
2015-04-06 17:18:32
收藏:
0 评论:
0 赞:
0 阅读:
123
例如:“12.34“ 返回12.34 “-123.34“ 返回-123.34函数原型:doublemy_atof(char *str){}
#include
#include
int main()
{
double my_atof(char *str);
char str[]="123.4";
printf("%lf\n",my_atof(str));
return 0...
分类:
编程语言 时间:
2015-04-06 17:18:23
收藏:
0 评论:
0 赞:
0 阅读:
274
PowerDesigner16.5 的设计成果,一般是通过“Report->Generate Report...”导出报告。
但是文中默认关系图片往往很小,很难辨认使用。下面介绍具体使用方法,生成任意大小的图片。
(1)使用配置报告模版(Report->Report Template...)
(2)配...
分类:
其他 时间:
2015-04-06 17:18:12
收藏:
0 评论:
0 赞:
0 阅读:
140
1. 概要
OpenGL是桌面环境下的绘制,渲染三维图形的API。
OpenGL ES是在Android环境下的OpenGL。
在Android中OpenGL需要在GLSurfaceView中渲染,渲染控制函数在GLSurfaceView.Renderer中。接下来会介绍如何创建第一个OpenGL程序
2. 配置AndroidManifest
(1)声明OpenGL ES API...
分类:
移动平台 时间:
2015-04-06 17:18:03
收藏:
0 评论:
0 赞:
0 阅读:
200
Bone Collector II
Time Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2759 Accepted Submission(s): 1428
Problem Description
The title of...
分类:
其他 时间:
2015-04-06 17:17:52
收藏:
0 评论:
0 赞:
0 阅读:
143
在速卖通的店铺装修中,怎么来自定义装修我们的店铺呢?
今天我们将来讲讲怎么在自己的店铺中添加多国语言这一模块
eg:http://www.aliexpress.com/store/1663031
1、进入速卖通装修
2、添加模块--自定义内容去
3、添加完成--进入编辑
4、查找链接
新开一个窗口,获取不同国家语言的链接
5、完成--保存--预览效果...
分类:
编程语言 时间:
2015-04-06 17:17:43
收藏:
0 评论:
0 赞:
0 阅读:
505