自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

沫沫的进阶之路

记录点滴

  • 博客(4)
  • 资源 (2)
  • 收藏
  • 关注

原创 Leetcode 238 Product of Array Except Self

题目: Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i].Solve it without division and in O(n)

2016-04-28 10:11:49 288

原创 Leetcode 136 SingleNumber

题目: Given an array of integers, every element appears twice except for one. Find that single one.Note: Your algorithm should have a linear runtime complexity. Could you implement it without using ext

2016-04-28 08:50:02 275

原创 Leetcode 283. Move Zeroes

题目: Given an array nums, write a function to move all 0’s to the end of it while maintaining the relative order of the non-zero elements.For example, given nums = [0, 1, 0, 3, 12], after calling your

2016-04-27 14:28:59 203

原创 Leetcode 258 Add Digits

public int addDigits(int num) { int result = num; Integer I_num = new Integer(num); String s = I_num.toString(); int len = s.length(); while(len>1){

2016-04-27 11:38:53 255

超市管理系统

JDBC 跟数据库mysql交互,提供了登录、入库管理、销售界面界面。在销售界面通过输入货号即可得到价格信息并将一次销售的的东西的详细信息在窗口显示并计算总价格。

2012-09-20

Thinking In Java(中文第四版)

很好的一本java书 ,java学习中永远值得收藏的一本

2012-06-27

空空如也

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

TA关注的人

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