题目:(DP ,BackTracking, String)Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more...
分类:
其他好文 时间:
2014-12-25 06:34:21
阅读次数:
169
dd命令可以轻易实现创建指定大小的文件,如dd if=/dev/zero of=test bs=1M count=1000会生成一个1000M的test文件,文件内容为全0(因从/dev/zero中读取,/dev/zero为0源)但是这样为实际写入硬盘,文件产生速度取决于硬盘读写速度,如果欲产生超大...
分类:
系统相关 时间:
2014-12-23 17:02:06
阅读次数:
281
import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.text.NumberFormat;
public class testNumber {
public static double num = 3.1015926;
public static double zero = 0.00000;...
分类:
编程语言 时间:
2014-12-22 14:30:23
阅读次数:
219
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:
其他好文 时间:
2014-12-21 23:32:16
阅读次数:
335
Regular Expression MatchingImplement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more o...
分类:
其他好文 时间:
2014-12-21 16:31:24
阅读次数:
206
Excel Sheet Column TitleGiven a non-zero positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A ...
分类:
其他好文 时间:
2014-12-21 00:44:20
阅读次数:
284
Excel Sheet Column TitleGiven a non-zero positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A ...
分类:
其他好文 时间:
2014-12-20 22:07:17
阅读次数:
233
Excel Sheet Column TitleGiven a non-zero positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A ...
分类:
其他好文 时间:
2014-12-20 19:38:27
阅读次数:
242
http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=19099
给定一些点,求构成三角形最大面积,并且这个三角形不能不能包含其他点(在边上也不行)。
因为数据范围很小,所以直接枚举就好,并且还把面积公式告诉了我们,判断点在三角形内的方法是,这个点与其他顶点的面积之和是否等于这个三角形的面积。
#include
#includ...
分类:
其他好文 时间:
2014-12-19 20:46:02
阅读次数:
208
Subarray Sum 原题链接:http://lintcode.com/zh-cn/problem/subarray-sum/#Given an integer array, find a subarray where the sum of numbers is zero. Your code ...
分类:
其他好文 时间:
2014-12-19 19:02:40
阅读次数:
357