码迷,mamicode.com
首页 >  
搜索关键字:leetcode解题报告    ( 67个结果
LeetCode Plus One Java版解题报告
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
【LeetCode】4Sum 解题报告
【题目】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 解题报告
LeetCode Intersection of Two Linked Lists 解题报告,求两个链表的第一个公共节点。...
分类:其他好文   时间:2014-12-29 01:12:37    阅读次数:109
LeetCode Roman to Integer 罗马字符转数字 解题报告
LeetCode Roman to Integer 解题报告: 把一个字符串形式的罗马字符串转为数字。...
分类:其他好文   时间:2014-12-21 22:13:24    阅读次数:193
LeetCode ZigZag Conversion 解题报告
LeetCode ZigZag Conversion 解题报告 对输入字符串,做蛇形变化,然后按行输出。...
分类:其他好文   时间:2014-12-14 22:48:28    阅读次数:228
LeetCode Count and Say 解题报告
LeetCode Count and Say 解题报告 如何数(shu 三声) 数(shu 四声):1,11,21,1211,111221,312211,13112221,1113213211...
分类:其他好文   时间:2014-12-05 15:33:13    阅读次数:121
LeetCode Add Binary 结题报告
Leetcode 二进制加法,解题报告...
分类:其他好文   时间:2014-11-29 10:28:06    阅读次数:217
【LeetCode】4Sum 解题报告
【题目】 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
LeetCode Merge k Sorted Lists 解题报告
合并K个已排序的数组,并分析整个算法的复杂度。 最朴素的方法TLE,借鉴归并排序的算法顺利AC,算法时间复杂度:NlogK...
分类:其他好文   时间:2014-10-11 19:08:45    阅读次数:113
LeetCode Maximum Product Subarray 解题报告
LeetCode 新题又更新了,最大子数组乘积 题目分析:求一个数组,连续子数组的最大乘积。...
分类:其他好文   时间:2014-10-06 15:26:40    阅读次数:175
67条   上一页 1 ... 3 4 5 6 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!