短
Time Limit : 3000/1000ms (Java/Other) Memory Limit : 65535/32768K (Java/Other)
Total Submission(s) : 172 Accepted Submission(s) : 7
Font: Times New Roman | Verdana | Georgia
Font Size: ← →...
分类:
其他好文 时间:
2014-12-30 19:05:11
阅读次数:
211
无尽弹珠
Time Limit : 3000/1000ms (Java/Other) Memory Limit : 65535/32768K (Java/Other)
Total Submission(s) : 18 Accepted Submission(s) : 13
Font: Times New Roman | Verdana | Georgia
Font ...
分类:
其他好文 时间:
2014-12-30 15:17:33
阅读次数:
215
两个字符串
Time Limit : 3000/1000ms (Java/Other) Memory Limit : 65535/32768K (Java/Other)
Total Submission(s) : 26 Accepted Submission(s) : 11
Font: Times New Roman | Verdana | Georgia
Font...
分类:
其他好文 时间:
2014-12-30 15:17:04
阅读次数:
194
Roman to IntegerGiven a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.罗马数字有如下符号:基本字符IVXLCDM阿拉伯数字15...
分类:
其他好文 时间:
2014-12-25 00:03:39
阅读次数:
266
LeetCode Roman to Integer 解题报告: 把一个字符串形式的罗马字符串转为数字。...
分类:
其他好文 时间:
2014-12-21 22:13:24
阅读次数:
193
Integer to RomanGiven an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.逐区间做处理。解法一:非递归class Solution...
分类:
其他好文 时间:
2014-12-21 13:58:22
阅读次数:
136
Roman to IntegerGiven a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.从左到右遍历每个字符,并记录上个字符来处理双字符情况即可...
分类:
其他好文 时间:
2014-12-21 13:48:45
阅读次数:
191
这个题目很简单,只是不了解数字与罗马数字转换关系的话就无从下手了。
题目:
原理与思路:
罗马数字有如下符号:
基本字符
I
V
X
L
C
D
M
对应阿拉伯数字
1
5
10
50
100
500
1000
计数规则:
相同的数字连写,所表示的数等于这些数字相加得到的数...
分类:
其他好文 时间:
2014-12-20 10:30:21
阅读次数:
244
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
class Solution {
public:
int romanToInt(string s) {
int weight[26];
...
分类:
其他好文 时间:
2014-12-19 14:30:53
阅读次数:
160