E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
lettcode
Lettcode
_83_Remove Duplicates from Sorted List
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41728739Givenasortedlinkedlist,deleteallduplicatessuchthateachelementappearonly once.Forexample,Given 1->1->2,return 1->2.Given 1->
pistolove
·
2014-12-04 19:00
java
LeetCode
算法
链表
LinkedList
Lettcode
_66_Plus One——"加1"?
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41652987PlusOneGivenanon-negativenumberrepresentedasanarrayofdigits,plusonetothenumber.Thedigitsarestoredsuchthatthemostsignificant
pistolove
·
2014-12-01 20:00
java
LeetCode
算法
array
遍历
Lettcode
_7_Reverse Integer ——翻转整数
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41578077ReverseInteger Reversedigitsofaninteger.Example1: x=123,return321Example2: x=-123,return-321思路:(1)这道算法题属于OJ中比较简单的题目。题意是将给定的
pistolove
·
2014-11-28 19:00
java
LeetCode
算法
array
character
Lettcode
_27_Remove Element ——从数组中移除指定元素
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41577997RemoveElementGivenanarrayandavalue,removeallinstancesofthatvalueinplaceandreturnthenewlength.Theorderofelementscanbechanged
pistolove
·
2014-11-28 19:00
java
LeetCode
算法
array
LinkedList
Lettcode
_26_Remove Duplicates from Sorted Array——移除排序数组中重复元素
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41558551RemoveDuplicatesfromSortedArrayGivenasortedarray,removetheduplicatesinplacesuchthateachelementappearonly once andreturnthen
pistolove
·
2014-11-27 23:00
java
LeetCode
算法
array
快速排序
Lettcode
_8_String to Integer——考虑多种情况的字符串转换算法
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41521063Implement atoi toconvertastringtoaninteger.Hint: Carefullyconsiderallpossibleinputcases.Ifyouwantachallenge,pleasedonotseeb
pistolove
·
2014-11-26 20:00
java
LeetCode
算法
String
character
Lettcode
_125_Valid Palindrome ——判断字符串是否为回文串
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41488377ValidPalindromeGivenastring,determineifitisapalindrome,consideringonlyalphanumericcharactersandignoringcases.Forexample,"Am
pistolove
·
2014-11-25 20:00
java
LeetCode
算法
String
character
Lettcode
_13_Roman to Integer——罗马数字转变算法
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41486885通过本文你可能学到的知识如下: (1)理解本题的解题思路,在以后类似的场景中,如果没有想到比较好的方法,可以考虑使用本文的方法,虽然效率不是特别高。 (2)能够对字符串的截取和HashMap相关操作有所学习。RomantoIntegerGiv
pistolove
·
2014-11-25 18:00
java
LeetCode
算法
String
HashMap
Lettcode
_28_Implement strStr()——字符串中第一次出现给定字符串的位置
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41452047ImplementstrStr().Returnstheindexofthefirstoccurrenceofneedleinhaystack,or-1ifneedleisnotpartofhaystack.Update(2014-11-02):
pistolove
·
2014-11-24 20:00
java
LeetCode
算法
String
Lettcode
_20_Valid Parentheses——括号匹配算法
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41450987通过本文你能学到如下知识:(1)对数据结构中栈的理解,特别是Stack类中的peek()方法和pop()方法的区别。(2)理解解题思路,提高思考问题的能力。Givenastringcontainingjustthecharacters '(',
pistolove
·
2014-11-24 20:00
Lettcode
_6_ZigZag Conversion——折线输出给定字符串
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41408021 看完这篇文章,你可能会学到到知识如下: (1)对于给定的算法题,如何正确对其进行分析,而不是通过穷举的方式来得到答案。(2)当解题逻辑非常清晰时,才开始编码,否则你很难编写出正确的代码。Thestring "PAYPALISHIRING" is
pistolove
·
2014-11-23 09:00
Lettcode
_38_count-and-say的另一种错误理解
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41257397Thecount-and-saysequenceisthesequenceofintegersbeginningasfollows:1,11,21,1211,111221,...1 isreadoffas "one1" or 11.11 isre
pistolove
·
2014-11-18 22:00
Lettcode
_14_Longest Common Prefix——查找字符串数组中最长公共前缀字符串
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/40555783LongestCommonPrefixWriteafunctiontofindthelongestcommonprefixstringamongstanarrayofstrings.算法是自己想的,虽然有点啰嗦,但是肯定是对的。希望继续努力,不断
pistolove
·
2014-10-28 21:00
java
LeetCode
算法
String
Lettcode
_58_Length of Last Word_字符串最后出现单词的长度
Givenastring s consistsofupper/lower-casealphabetsandemptyspacecharacters '',returnthelengthoflastwordinthestring.Ifthelastworddoesnotexist,return0.Note: Awordisdefinedasacharactersequenceconsistsofno
pistolove
·
2014-10-26 22:00
Lettcode
_67_Add Binary——给定两个二进制字符串返回其和
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/40480151Giventwobinarystrings,returntheirsum(alsoabinarystring).Forexample,a= "11"b= "1"Return "100".通常情况下,我们会考虑使用现有的Interger.value
pistolove
·
2014-10-26 20:00
java
LeetCode
算法
String
Lettcode
| Two Sum(两个数的和等于定值)
题目:Givenanarrayofintegers,findtwonumberssuchthattheyadduptoaspecifictargetnumber.ThefunctiontwoSumshouldreturnindicesofthetwonumberssuchthattheyadduptothetarget,whereindex1mustbelessthanindex2.Pleasen
a45872055555
·
2014-07-03 17:00
LeetCode
上一页
1
2
3
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他