自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (1)
  • 收藏
  • 关注

转载 LintCode Copy Books

转自:Copy BooksGiven an array A of integer with size of n( means n books and number of pages of each book) and k people to copy the book. You must distribute the continuous id bo

2015-08-25 17:40:21 1166

转载 java数组合并

转自:http://www.cnblogs.com/changhongzhi/articles/2242323.html三种字符数组合并的方法public static String[] getOneArray() { String[] a = { "0", "1", "2" }; String[] b = { "0", "1", "2" }; String[]

2015-08-24 19:19:12 439

原创 LintCode 岛屿的个数

算法 lintcode 岛屿

2015-08-22 23:06:35 3515

原创 LintCode 最长单词

算法 lintcode

2015-08-21 07:43:18 339

原创 1小时内必须解决的5个编程问题

算法 程序员

2015-08-20 18:33:31 383

原创 LintCode 翻转二叉树

样例 1 1 / \ / \2 3 => 3 2 / \ 4 4挑战递归固然可行,能否写个非递归的?public void invertBinaryTree(TreeNode root) { // write your code here if (root

2015-08-20 16:08:02 258

原创 LintCode 寻找缺失的数

题目: 寻找缺失的数给出一个包含 0 .. N 中 N 个数的序列,找出0 .. N 中没有出现在序列中的那个数。样例N = 4 且序列为 [0, 1, 3] 时,缺失的数为2。注意可以改变序列中数的位置。挑战在数组上原地完成,使用O(1)的额外空间和O(N)的时间。代码如下: public int fin

2015-08-20 15:46:48 304

原创 360校招笔试算法题

2015-8-11,360笔试的两道算法题

2015-08-12 14:04:30 1080

原创 java集合知识点概括

一.类图二.总结1.collection是集合的总接口,list,set,queue继承collection.2.list是元素有序的,使用了索引,允许为空,允许重复.继承它的实现类有Vector(同步数组),Arraylist(不同步数组),linkedlist(链表),stack继承vector,加上5个额外的方法得以当做堆栈使用(push,pop,

2015-07-21 16:28:52 496

springboot-mybatis整合demo

springboot整合mybatis,非常适合新手学习.同时整合了swagger.

2015-12-31

空空如也

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

TA关注的人

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