1.
题目:以9行9列的形式显示九九乘法表2.要求:显示下三角格式如表4.1所示,也可以上三角格式显示。 1 ; Example assembly language
program -- 2 ; Author: Karllen 3 ; Date: revised 05/2014 4 5 ....
分类:
编程语言 时间:
2014-05-23 09:04:43
阅读次数:
304
就拿杭电OJ上的第1003题开始吧,这题比原书要复杂一些。
Problem Description
Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum...
分类:
其他好文 时间:
2014-05-22 07:07:27
阅读次数:
322
上一篇我们讲了MongoDB 的命令入门初探,本篇blog将基于上一篇blog所建立的数据库和表完成一个简单的Java MongoDB CRUD Example,利用Java连接MongoDB数据库,并实现创建数据库、获取表、遍历表中的对象、对表中对象进行CRUD操作等例程。
1、下载MongoDB Java 支持驱动包
【gitHub下载地址】https://github.com/mon...
分类:
数据库 时间:
2014-05-22 06:53:47
阅读次数:
401
package com.example.ceshi;import
android.content.Context;import android.graphics.Canvas;import
android.graphics.Color;import android.graphics.Paint;im...
分类:
其他好文 时间:
2014-05-22 01:59:09
阅读次数:
288
package com.example.ceshi;import
android.app.Activity;import android.content.Context;import
android.opengl.Visibility;import android.util.AttributeSet...
分类:
其他好文 时间:
2014-05-22 01:55:56
阅读次数:
292
Given a string, determine if it is a
palindrome, considering only alphanumeric characters and ignoring cases.For
example,"A man, a plan, a canal: Pana...
分类:
其他好文 时间:
2014-05-21 21:20:54
阅读次数:
291
Reverse a linked list from position m to n. Do it in-place and in one-pass.
For example:
Given 1->2->3->4->5->NULL, m = 2 and n =
4,
return 1->4->3->2->5->NULL.
Note:
Given m, n satisfy the fol...
分类:
其他好文 时间:
2014-05-21 07:18:02
阅读次数:
301
【题目】
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
For example,
Given [0,1,0,2,1,0,1,3,2,1,2,1], return 6.
The above elevation map is represente...
分类:
移动开发 时间:
2014-05-21 06:44:38
阅读次数:
359
DescriptionA rooted tree is a well-known data
structure in computer science and engineering. An example is shown below:In the
figure, each node is lab...
分类:
其他好文 时间:
2014-05-21 03:23:51
阅读次数:
296
1、由于gvim是gui部分,需要新建_gvimrc配置文件,在里面加入下面内容即可。setnobackup2、打开vim7x目录下gvimrc_example.vim,修改或者加入下面内容。ifhas(“vms”)
setnobackup
else
#setbackup
endif
分类:
其他好文 时间:
2014-05-20 18:04:38
阅读次数:
220