码迷,mamicode.com
首页 >  
搜索关键字:examples    ( 2038个结果
[LeetCode]wildcard matching通配符实现之贪心法
前天用递归LTE,昨天用动态规划LTE,今天接着搞,改用贪心法。题目再放一次:'?'匹配任意字符,'*'匹配任意长度字符串Some examples:isMatch("aa","a") → falseisMatch("aa","aa") → trueisMatch("aaa","aa") → fal...
分类:其他好文   时间:2014-08-19 00:56:13    阅读次数:336
Java Object Oriented Programming concepts
Introduction This tutorial will help you to understand about Java OOP’S concepts with examples. Let’s discuss about what are the features of Object Oriented Programming. Writing object-oriented p...
分类:编程语言   时间:2014-08-18 23:42:53    阅读次数:755
druid 连接kafuk
java -Xmx256m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -Ddruid.realtime.specFile=examples/indexing/wikipedia.spec -classpath lib/*:config/realtime io...
分类:其他好文   时间:2014-08-18 20:09:43    阅读次数:190
LeetCode 2 Evaluate Reverse Polish Notation
Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, *, /. Each operand may be an integer or another expression. Some examples: ["2", "1", ...
分类:其他好文   时间:2014-08-18 18:42:42    阅读次数:215
RTree算法Java实现 JSI RTree Library的调用实例 标签:jsi-rtree-library
1. [代码]jsi-rtree-library /****/package com.mycompany.project;//package net.sourceforge.jsi.examples;import java.util.ArrayList;import java.util.List;....
分类:编程语言   时间:2014-08-18 18:29:52    阅读次数:436
php使用phpCAS接入CAS SSO
源码:https://github.com/Jasig/phpCAS 文档:https://wiki.jasig.org/display/CASC/phpCAS+examples 安 装 ubuntu下使用pear安装 sudo pear install ?http://downloads.jasig.org/cas-clients/php/current.tg...
分类:Web程序   时间:2014-08-18 12:41:54    阅读次数:205
[LeetCode]wildcard matching通配符实现之动态规划
前天wildcard matching没AC,今天接着搞,改用动态规划。题目再放一次:'?'匹配任意字符,'*'匹配任意长度字符串Some examples:isMatch("aa","a") → falseisMatch("aa","aa") → trueisMatch("aaa","aa") →...
分类:其他好文   时间:2014-08-18 00:06:43    阅读次数:283
One usage of recurison: the tower of Hanoi
Statements: This blog was written by me, but most of content  is quoted from book【Data Structure with Java Hubbard】  【Description】   we have seen important examples of functions that are more n...
分类:其他好文   时间:2014-08-17 01:09:11    阅读次数:186
MapReduce剖析笔记之一:从WordCount理解MapReduce的几个阶段
WordCount是一个入门的MapReduce程序(从src\examples\org\apache\hadoop\examples粘贴过来的):package org.apache.hadoop.examples;import java.io.IOException;import java.ut...
分类:其他好文   时间:2014-08-16 23:48:21    阅读次数:340
[leetcode]Valid Number
Valid NumberValidate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the ...
分类:其他好文   时间:2014-08-16 01:01:49    阅读次数:195
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!