History
The radare project [http://radare.org/] started in February of 2006 aiming to provide a free and simple command line interface for a hexadecim...
分类:
其他好文 时间:
2014-09-08 00:55:46
阅读次数:
364
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:
其他好文 时间:
2014-09-07 22:19:15
阅读次数:
280
Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321思路: 1 class Solution { 2 public: 3 int reverse( int x ) {...
分类:
其他好文 时间:
2014-09-07 21:08:25
阅读次数:
235
1、进入RetionalRose选择J2EE模板2、在菜单栏选择tools->java/j2EE->reverse engineer3、编辑路径Edit CLASSPATH选择要生成类图的Java项目src文件4、点击含有java源文件的文件夹,再点击Add Recursive按钮5、先点击sele...
分类:
编程语言 时间:
2014-09-07 18:25:15
阅读次数:
226
public class Solution { public String reverseWords(String s) { if(s==null||s.length()==0) return ""; s=reverse(s); Strin...
分类:
其他好文 时间:
2014-09-06 22:32:43
阅读次数:
278
Reverse Integer 解题总结
1.把integer转为String,利用StringBuilder有reverse方法;
2.构造函数StringBuilder如果是int参数代表是capacity而非想象中的那样;
3.难点是判断溢出问题(虽然不判断可以AC通过),简单的方法是利用long来保留翻转之后的结果,而后和 Integer.MIN_VALUE, Integer.M...
分类:
其他好文 时间:
2014-09-06 21:20:14
阅读次数:
227
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a multiple of k then le...
分类:
其他好文 时间:
2014-09-06 12:20:23
阅读次数:
171
VS2013上使用EF Power Tools的Reverse Engineer Code First逆向生成。发现数据库中的decimal(18, 4)字段在生成的mapping类中没有精度和小数位数。这使得通过EF保存数据时,自动生成的SQL缺省使用了decimal(18, 2).还好EF Po...
分类:
数据库 时间:
2014-09-06 02:13:12
阅读次数:
355
HDU 1266 Reverse Number(字符串逆转 水题)...
分类:
其他好文 时间:
2014-09-05 19:58:01
阅读次数:
163
javascript reverse string
分类:
编程语言 时间:
2014-09-05 14:11:21
阅读次数:
211