Redfield Water Ripples 能够用于设计具有高度现实主义风格的水波纹特效,它提供了诸多属性选项,其 3D 渲染品质另人映像深刻。此滤镜很易用,其随机设定生成器可创建差点儿无限的水波纹表面,令你目不暇接。 Water Ripples 2.02 PS水波滤镜,是眼下最新版本号,它比上....
分类:
其他好文 时间:
2015-01-04 21:08:42
阅读次数:
155
package com.water.activity;import java.util.List;import android.app.Activity;import android.os.Bundle;import android.telephony.CellLocation;import and...
分类:
移动开发 时间:
2015-01-04 09:55:50
阅读次数:
273
下雨了,怎样说?下雨了,怎样说?近来广州天天下雨,大家知道rain有几种说法吗?it's raining.下雨了。it's raining again .又下雨了。it's raining hard .it's raining heavily.都是下大雨的意思。但大家知道还有更有趣的说法吗?It's...
分类:
其他好文 时间:
2015-01-03 13:11:30
阅读次数:
168
题目描述:
对于一个字符串,将其后缀子串进行排序,例如grain
其子串有:
grain
rain
ain
in
n
然后对各子串按字典顺序排序,即:
ain,grain,in,n,rain
输入:
每个案例为一行字符串。
输出:
将子串排序输出
样例输入:
grain
样例输出:
ain
grain
in
n
rain
...
分类:
编程语言 时间:
2015-01-03 09:30:54
阅读次数:
169
https://oj.leetcode.com/problems/container-with-most-water/http://fisherlei.blogspot.com/2013/01/leetcode-container-with-most-water.htmlpublicclassSolution{
publicintmaxArea(int[]height){
//SolutionB:
//returnmaxArea_BruteForce(height);
//SolutionA:
retur..
分类:
其他好文 时间:
2015-01-02 16:15:22
阅读次数:
158
https://oj.leetcode.com/problems/trapping-rain-water/http://fisherlei.blogspot.com/2013/01/leetcode-trapping-rain-water.htmlpublicclassSolution{
publicinttrap(int[]A){
//对于某坐标有
//-leftmax它左边最高
//-rightmax它右边最高
//-val它本身高度
//那么它的容..
分类:
移动开发 时间:
2015-01-02 07:34:08
阅读次数:
195
题目1099:后缀子串排序
时间限制:1 秒
内存限制:32 兆
特殊判题:否
提交:2857
解决:1219
题目描述:
对于一个字符串,将其后缀子串进行排序,例如grain
其子串有:
grain
rain
ain
in
n
然后对各子串按字典顺序排序,即:
ain,grain,in,n,rain...
分类:
编程语言 时间:
2014-12-31 21:33:25
阅读次数:
198
题目大意:一个村庄被洪水摧毁了,整个村庄都要转移。但是山上没有泉水,每户家庭只能
在自家挖一个水井或是修一个水渠从别的家庭引水。如果要修井,则修井费用和房子所在海
拔高度有关,每米X元。如果从别人的家里引水,如果从高于自己家高度的人家里引水,费
用为每米Y元。如果从低于自己家高度的人家里引水,每条要多花费Z元。现在给你这个村庄
N个家庭房屋的坐标(a,b,c)和三种花费X,Y,Z。接着给你各家之间能单向修建引水沟渠的限制。
问:能使全村庄的人喝上水的总修建费用最低为多少。若不能,则输出"poor XiaoA...
分类:
其他好文 时间:
2014-12-30 00:32:51
阅读次数:
134
效果图:工程图:代码:#import "ViewController.h"//加入头文件#import "VWWWaterView.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad ...
分类:
其他好文 时间:
2014-12-26 11:01:34
阅读次数:
117
题目描述:
Given n non-negative integers a1, a2,
..., an, where each represents a point at coordinate (i, ai). n vertical
lines are drawn such that the two endpoints of line i is at (i, ai) and (i...
分类:
其他好文 时间:
2014-12-25 11:24:50
阅读次数:
163