LeetCode Plus One Java版解题报告
题意:一个整数按位存储于一个int数组中,排列顺序为:最高位在array[0] ,最低位在[n-1],例如:98,存储为:array[0]=9; array[1]=8;
解题思路,从数组的最后一位开始加1,需要考虑进位,如果到[0]位之后仍然有进位存在,需要新开一个长度为(n.length + 1)的数组,拷贝原来的数组。...
分类:
编程语言 时间:
2015-01-10 23:45:27
阅读次数:
363
【题目】Given an arraySofnintegers, are there elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in the array which gives the sum...
分类:
其他好文 时间:
2015-01-05 10:54:18
阅读次数:
146
LeetCode Intersection of Two Linked Lists 解题报告,求两个链表的第一个公共节点。...
分类:
其他好文 时间:
2014-12-29 01:12:37
阅读次数:
109
LeetCode Roman to Integer 解题报告: 把一个字符串形式的罗马字符串转为数字。...
分类:
其他好文 时间:
2014-12-21 22:13:24
阅读次数:
193
LeetCode ZigZag Conversion 解题报告
对输入字符串,做蛇形变化,然后按行输出。...
分类:
其他好文 时间:
2014-12-14 22:48:28
阅读次数:
228
LeetCode Count and Say 解题报告
如何数(shu 三声) 数(shu 四声):1,11,21,1211,111221,312211,13112221,1113213211...
分类:
其他好文 时间:
2014-12-05 15:33:13
阅读次数:
121
【题目】
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d =
target? Find all unique quadruplets in the array which gives the sum of target.
Note:
...
分类:
其他好文 时间:
2014-10-31 12:02:18
阅读次数:
261
合并K个已排序的数组,并分析整个算法的复杂度。
最朴素的方法TLE,借鉴归并排序的算法顺利AC,算法时间复杂度:NlogK...
分类:
其他好文 时间:
2014-10-11 19:08:45
阅读次数:
113
LeetCode 新题又更新了,最大子数组乘积
题目分析:求一个数组,连续子数组的最大乘积。...
分类:
其他好文 时间:
2014-10-06 15:26:40
阅读次数:
175