问题
Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.Tags: Math, String代码public class Solution {
public int romanToInt(String s) {
M...
分类:
编程语言 时间:
2015-06-30 22:08:23
阅读次数:
207
tags: Microservice Restful DockerAuthor: Andy AiWeibo:NinetyHGitHub: https://github.com/aiyanbo/docker-restful-demo实现构思1. 使用 Maven 进行项目构建2. 使用 Jersey ...
分类:
其他好文 时间:
2015-06-27 22:40:39
阅读次数:
434
svn有一个非常标准的文件夹结构,这是。例如,该项目是proj。svn地址svn://proj/,然后该标准svn布局是 svn://proj/ | +-trunk +-branches +-tags 这 是一个标准的布局,trunk为主开发文件夹,branches为分支开发文...
分类:
移动开发 时间:
2015-06-25 19:05:38
阅读次数:
187
一. 系统信息ThinkPHP 内置多语言支持,如果涉及到国际化的支持,那么可以定义相关的语言包文件。任何字符串形式的输出,都可以定义语言常量。要启用多语言功能,需要配置开启多语言行为,在应用配置目录中:1 //在应用模块 Weibo 下 Common/Conf 建立 tags.php2 retu....
分类:
编程语言 时间:
2015-06-23 19:57:29
阅读次数:
197
创建分支svn cp -m "create branch" http://svn_server/xxx_repository/trunk http://svn_server/xxx_repository/branches/br_feature001获得分支svn co http://svn_serv...
分类:
其他好文 时间:
2015-06-23 17:38:42
阅读次数:
97
html表单的创建表单:表单用于获取不同类型的用户输入常用标签:http://www.w3school.com.cn/tags/html_ref_byfunc.asp<!DOCTYPEhtml>
<html>
<headlang="en">
<metacharset="UTF-8">
<title></title>
</head>
<body>
<for..
分类:
Web程序 时间:
2015-06-23 15:57:52
阅读次数:
175
function mySort() {var tags = new Array();for(var i = 0;i < arguments.length;i++) {tags.push(arguments[i]);}tags.sort(function(compare1,compare2) {ret...
分类:
其他好文 时间:
2015-06-23 10:03:14
阅读次数:
367
html5列表:http://www.w3school.com.cn/tags/html_ref_byfunc.asp列表:无序列表:使用标签<ul><li>属性:disc,circle,square有序列表:使用标签<ol><li>属性:A,a,I,i,start嵌套列表:使用标签:<ul>,<ol>,<li>自定义列表:使用标..
分类:
Web程序 时间:
2015-06-23 06:27:11
阅读次数:
202
vim + ctagsa 首先我们必需给要阅读的原始码建一个或多个tags文件,在shell下利用ctags命令给单个文件建立tags如下: $ ctags filename.c要给同一个目录下的所有文件建立tags如下: $ ctags -R这时在tags文件所在的目录下打开源文件阅读,vim.....
分类:
其他好文 时间:
2015-06-22 22:13:19
阅读次数:
143