码迷,mamicode.com
首页 > 2014年07月06日 > 全部分享
leetcode--Distinct Subsequences
Given a stringSand a stringT, count the number of distinct subsequences ofTinS.A subsequence of a string is a new string which is formed from the orig...
分类:其他好文   时间:2014-07-06 16:01:23    阅读次数:203
获取图斑中心点
IArea area = feature.Shape as IArea;IPoint pt=area.Centroid;//中心点
分类:其他好文   时间:2014-07-06 16:00:44    阅读次数:163
javaweb学习总结(六)——Servlet开发(二)
一、ServletConfig讲解1.1、配置Servlet初始化参数 在Servlet的配置文件web.xml中,可以使用一个或多个标签为servlet配置一些初始化参数。例如: 1 2 ServletConfigDemo1 3 gacl.servlet.study.Servl...
分类:编程语言   时间:2014-07-06 16:01:58    阅读次数:285
LeetCode Restore IP Addresses
class Solution {public: vector restoreIpAddresses(string s) { vector ips; vector ip; dfs(s, 0, ip, ips); return ips; ...
分类:其他好文   时间:2014-07-06 16:03:21    阅读次数:276
重置表空间的大小
可以通过如下的方法来改变表空间的大小:一、改变数据文件的大小 1、在创建表空间时使用autoextend on选项自动的改变(扩展)数据文件的大小 2、在创建表空间以后使用alter database命令的autoextend on选项手动的改变数据文件的大小 使用dba_data_files...
分类:其他好文   时间:2014-07-06 16:02:38    阅读次数:238
asp.net 中日期的格式化显示的方法
在Asp.net 中经常使用日期,在不同的场合,对日期的显示方式有不同的要求,为此,自己总结了一些日期格式化的方式,仅供学习参考使用:C#格式化日期时间DateTime dt = DateTime.Now; Label1.Text = dt.ToString();//2005-11-5 13:21:...
分类:Web程序   时间:2014-07-06 16:04:06    阅读次数:158
.Net魔法堂:史上最全的ActiveX开发教程——部署篇
一、前言 接《.Net魔法堂:史上最全的ActiveX开发教程——发布篇》,后我们继续来部署吧!二、 挽起衣袖来部署 ActiveX的部署其实就是客户端安装ActiveX组件,对未签...
分类:Web程序   时间:2014-07-06 16:04:47    阅读次数:148
1994年 三国演义 下载地址
ed2k://|file|[三国演义].01.桃园三结义.1994.DVDRip.mkv|238514548|08D537D53CCE2DD1A5E9E38A91317ED3|/ed2k://|file|[三国演义].02.十常侍乱政.1994.DVDRip.mkv|263671260|C81D42...
分类:其他好文   时间:2014-07-06 16:05:32    阅读次数:698
[LeetCode] Word Break
Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For exampl...
分类:其他好文   时间:2014-07-06 16:06:45    阅读次数:198
[LeetCode] N-Queens II
N-Queens IIFollow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.solution:#includ...
分类:其他好文   时间:2014-07-06 16:06:08    阅读次数:198
leetcode--Sudoku Solver
Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character'.'.You may assume that there will be on...
分类:其他好文   时间:2014-07-06 16:07:23    阅读次数:204
[LeetCode] N-Queens
N-QueensTotal Accepted:9970Total Submissions:38919My SubmissionsThen-queens puzzle is the problem of placingnqueens on ann×nchessboard such that no tw...
分类:其他好文   时间:2014-07-06 16:08:01    阅读次数:222
用简单的方法解决问题
昨天同事在review代码的时候,给我show了另一个同事写的神一样的python代码,基本上是list comprehension加巨复杂的filter,外加正则表达式,以及一个generator函数,并且在那个generator函数上还加了一个decorator,同事其实也写了几年python了...
分类:其他好文   时间:2014-07-06 16:08:45    阅读次数:149
Eclipse下如何部署WEB项目?
一直使用MyEclipse,今天下班的时候,同事跟我说一个项目需要部署到eclipse上,他还特意强调可以问XX开发人员,我心想:这有什么难的?自己搞定就行了,能不麻烦就别麻烦了吧。不过发现确实有点不好弄,记录一下这小小的成就。哈哈!第一步:先启动Eclipse(这个步骤的图片就省略了)第二步:在....
分类:Web程序   时间:2014-07-06 16:09:27    阅读次数:154
Text Justification
Given an array of words and a lengthL, format the text such that each line has exactlyLcharacters and is fully (left and right) justified.You should p...
分类:其他好文   时间:2014-07-06 16:10:10    阅读次数:138
leetcode--Surrounded Regions
Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that surrounded region...
分类:其他好文   时间:2014-07-06 16:10:55    阅读次数:138
Plus One
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:其他好文   时间:2014-07-06 16:11:35    阅读次数:170
1536条   上一页 1 ... 46 47 48 49 50 51 52 ... 91 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!