码迷,mamicode.com
首页 >  
搜索关键字:lintcode    ( 1584个结果
3 - Two Pointers Algorithm
380. Intersection of Two Linked Lists https://www.lintcode.com/problem/intersection-of-two-linked-lists/description?_from=ladder&&fromId=1 102. Linked ...
分类:其他好文   时间:2019-05-19 10:10:21    阅读次数:95
3 - Two Pointers Algorithm
380. Intersection of Two Linked Lists https://www.lintcode.com/problem/intersection-of-two-linked-lists/description?_from=ladder&&fromId=1 102. Linked ...
分类:其他好文   时间:2019-05-18 14:01:21    阅读次数:103
3 - Two Pointers Algorithm
382. Triangle Count https://www.lintcode.com/problem/triangle-count/description 148. Sort Colors https://www.lintcode.com/problem/sort-colors/descript ...
分类:其他好文   时间:2019-05-13 12:37:59    阅读次数:152
3 - Two Pointers Algorithm
604. Window Sum https://www.lintcode.com/problem/window-sum/description?_from=ladder&&fromId=1 自己写的方法: 九章的答案: ...
分类:其他好文   时间:2019-05-10 13:22:43    阅读次数:121
LintCode 8---旋转字符串
/* 给定一个字符串(以字符数组的形式给出)和一个偏移量,根据偏移量原地旋转字符串(从左向右旋转) */ public class Lint8 { public static void main(String[] args) { } public void rotateString(char[] s... ...
分类:其他好文   时间:2019-05-06 01:44:19    阅读次数:142
LintCode 9---Fizz Buzz 问题
import java.util.ArrayList; import java.util.List; public class Lint9 { /* * 判断能不能被整除 */ public static void main(String[] args) { // TODO Auto-generat... ...
分类:其他好文   时间:2019-05-06 01:34:17    阅读次数:110
LintCode 13---字符串查找
public class Solution { /** * @param source: * @param target: * @return: return the index */ public int strStr(String source, String target) { // Writ... ...
分类:其他好文   时间:2019-05-06 01:33:48    阅读次数:158
LintCode 6---合并排序数组 II
import java.util.Arrays; public class Lint6 { /* * 合并两个排序的整数数组A和B变成一个新的数组。新数组也要有序。 */ public static void main(String[] args) { } public int[] mergeSor... ...
分类:编程语言   时间:2019-05-06 01:33:30    阅读次数:144
LintCode 14---二分查找
public class Solution { /** * @param nums: The integer array. * @param target: Target to find. * @return: The first position of target. Position start... ...
分类:其他好文   时间:2019-05-06 01:19:14    阅读次数:133
LintCode 29---交叉字符串
public class Solution { /** * @param s1: A string * @param s2: A string * @param s3: A string * @return: Determine whether s3 is formed by interleavin... ...
分类:其他好文   时间:2019-05-06 01:06:40    阅读次数:162
1584条   上一页 1 ... 5 6 7 8 9 ... 159 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!