自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (3)
  • 收藏
  • 关注

原创 leetcode 13. Roman to Integer

题目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) { HashMap<Character,Integer>

2018-01-07 15:52:45 295

原创 leetcode 9. Palindrome Number

题目Determine whether an integer is a palindrome. Do this without extra space.解class Solution { public boolean isPalindrome(int x) { if(x<0) return false; int y=x; int res=0;

2018-01-07 15:34:35 280

原创 leetcode 14. Longest Common Prefix

题目Write a function to find the longest common prefix string amongst an array of strings.解class Solution { public String longestCommonPrefix(String[] strs) { //return ""; if(s

2018-01-07 15:29:42 287

原创 leetcode 7.Reverse Integer

题目Given a 32-bit signed integer, reverse digits of an integer.Example 1:Input: 123 Output: 321 Example 2:Input: -123 Output: -321 Example 3:Input: 120 Output: 21 Note: Assume we are dealing wit

2018-01-03 22:39:46 302

原创 leetcode 1.Two Sum

题目Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution, and you may not use the same e

2018-01-02 20:23:12 228

SpringMVC需要的jar包

SpringMVC需要的jar包

2016-12-29

hibernate需要的jar包们

HIbernate需要的jar包,注意里面的log4j.jar,一定要加进去。

2016-12-14

构建struts2的7个jar包

解压后,将这7个jar包放入项目的/WebRoot/WEB-INF/lib下即可。

2016-12-13

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除