bc是An arbitrary precision calculator language,即一个任意精度的计算语言,注意是一种语言,它提供了一些语法结构,比如条件判断、循环等,可以说是很强大的,但是我在实际中还没有找到需要这个用途的场合 。另外一个用途就是用来进行进制转换。常用参数:-q 不输出提...
分类:
其他好文 时间:
2015-04-14 14:25:53
阅读次数:
131
灯塔(LightHouse)DescriptionAs shown in the following figure, If another lighthouse is in gray area, they can beacon each other.For example, in following...
分类:
其他好文 时间:
2015-04-14 09:43:40
阅读次数:
249
interface MyConstants { int r =42; int s = 69; int Area; //插入代码 final double circumference = 2 *Math.PI*r ; //Cannot reference a fie...
分类:
编程语言 时间:
2015-04-13 00:15:27
阅读次数:
200
题目链接:maximal-rectangle
import java.util.Arrays;
/**
* Given a 2D binary matrix filled with 0's and 1's,
* find the largest rectangle containing all ones and return its area.
*
*/
public cl...
分类:
其他好文 时间:
2015-04-12 13:28:40
阅读次数:
189
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.
题意:求0,1矩阵中,1构成的最大矩阵。
思路:借用了上一题,首先我们先计算出dp[i][j]表示到第i行第j列时,此时这一列的连续1的个数,然后计算每一行...
分类:
其他好文 时间:
2015-04-12 10:37:34
阅读次数:
118
目录目录
概述
属性服务
属性服务初始化
创建存储空间
__system_property_area_init
init_workspace
客户端进程访问属性内存区域
属性服务器的分析
启动属性服务器
服务端处理设置属性请求
客户端发送请求概述init是一个进程,确切的说,它是Linux系统中用户空间的第一个进程。由于Android是基于Linux内核的,所以init也是Android系统中用户空...
分类:
移动开发 时间:
2015-04-12 01:29:59
阅读次数:
274
題目:給你n個1*1*1的小立方體,把他們拼成一個長繁體,求最小的表面積。
分析:簡單題,枚舉。數據較小直接枚舉長款計算髙即可,打表計算查詢輸出。
說明:三個值越接近越好,╮(╯▽╰)╭。
#include
#include
#include
#include
#include
#include
using namespace std;
int area[1001];
in...
分类:
其他好文 时间:
2015-04-11 22:38:51
阅读次数:
213
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram.
Above is a histogram where width o...
分类:
其他好文 时间:
2015-04-11 22:35:26
阅读次数:
178
/// /// Linq to sql 多字段动态查询
/// /// private List ViewBinding(ModelDataContext db,string fyno,string brd,string area,string city,string pos)
{
Expressi...
分类:
数据库 时间:
2015-04-08 12:49:35
阅读次数:
162
题意:
给一个有'/','\','.'组成的二维字符数组,求图中‘/’和‘\’组成的面积有多大。
分析:
每个‘/’和‘\’的格每个贡献1/2的面积,每个多边形内部的'.'贡献1的面积,关键是求多边形内部的’.‘有多少个。一开始往上下左右4个方向搜wa了,原来内部的点可以斜着扩展,比如/./这种情况。但斜着搜要注意避免从多边形内部跑到外部的情况,比如题目中给的sample。
代码:
/...
分类:
其他好文 时间:
2015-04-08 09:15:09
阅读次数:
116