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
algorithms
C实现 LeetCode->Linked List Cycle 双指针大法)(单链表是否有环 并计算环长度)
// //LinkedListCycleII.c //
Algorithms
//
liutianshx2012
·
2015-06-22 17:00
C实现 LeetCode->Linked List Cycle 双指针大法)(单链表是否有环)
//判断一个链表是否为循环链表; 双指针大法(一快一慢)// //LinkedListCycle.c //
Algorithms
// //CreatedbyTTcon15/6/22.
liutianshx2012
·
2015-06-22 17:00
C实现 LeetCode->Reverse Linked List (双指针大法)(单链表反转)
./** * Reverseasinglylinkedlist 反转单链表,请牢记Reverse()函数 */// //ReverseLinkedList.c //
Algorithms
// //CreatedbyTTcon15
liutianshx2012
·
2015-06-22 15:00
C实现 LeetCode->Rotate List(双指针大法)(单链表 部分旋转)
// //RotateList.c //
Algorithms
// //CreatedbyTTcon1
liutianshx2012
·
2015-06-22 11:00
leetcode--Single Number II
Givenanarrayofintegers,everyelementappearsthreetimesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
kangaroo835127729
·
2015-06-19 16:00
[
Algorithms
] KMP
KMP is a classic and yet notoriously hard-to-understand algorithm. However, I think the following two links give nice explanations. You may refer to them. KMP on jBoxer's blog; KMP on geeksforge
·
2015-06-19 15:00
algorithms
leetcode--Single Number
Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
kangaroo835127729
·
2015-06-19 14:00
[LeetCode] Single Number II
SingleNumberII Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
wangshaner1
·
2015-06-19 14:00
LeetCode
C++
C实现 LeetCode->Merge Two Sorted Lists (双指针大法)(单链表swap合并反转)
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
liutianshx2012
·
2015-06-19 11:00
[LeetCode] Single Number
SingleNumberGivenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
wangshaner1
·
2015-06-18 15:00
LeetCode
C++
C实现 LeetCode->Merge Two Sorted Lists (双指针大法)
. * 将单链表排序 O(nlgn) // //SortList.c //
Algorithms
// //CreatedbyTTcon15/6/18.
liutianshx2012
·
2015-06-18 12:00
C实现 LeetCode->Merge k Sorted Lists (双指针大法)
// //MergeKSortedLists.c //
Algorithms
// //CreatedbyTTcon15/6/18. /
liutianshx2012
·
2015-06-18 11:00
C实现 LeetCode->Merge Two Sorted Lists (双指针大法) (单链表排序)
Mergetwosortedlinkedlistsandreturnitasanewlist.Thenewlistshouldbemadebysplicingtogetherthenodesofthefirsttwolists.双指针大法解决// //MergeTwoSortedLists.c //
Algorithms
liutianshx2012
·
2015-06-18 10:00
华为USG6550的ipsec ***配置
aclnumber3000rule5permitipsource10.50.0.00.0.255.255destination10.10.0.00.0.255.255#ikeproposal1authentication-
algorithms
ha2
sdbaby
·
2015-06-17 15:38
华为
IP地址
source
网络工程
[
Algorithms
] Longest Increasing Subsequence
The Longest Increasing Subsequence (LIS) problem requires us to find a subsequence t of a given sequence s, such that t satisfies two requirements: Elements in t are sorted in ascending order; t
·
2015-06-15 11:00
algorithms
LeetCode 24:Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
sunao2002002
·
2015-06-13 23:00
LeetCode
[
Algorithms
] Longest Common Subsequence
The Longest Common Subsequence (LCS) problem is as follows: Given two sequences s and t, find the length of the longest sequence r, which is a subsequence of both s and t. Do you
·
2015-06-13 23:00
algorithms
[
Algorithms
] Longest Common Substring
The Longest Common Substring (LCS) problem is as follows: Given two strings s and t, find the length of the longest string r, which is a substring of both s and t. This problem is a classic applicat
·
2015-06-13 22:00
algorithms
Python模块学习笔记— —hashlib
常用属性hashlib.
algorithms
列出所有加密算法h.digest_size产生的散列字节大小。
lyh03601
·
2015-06-13 09:00
加密
哈希
python
C实现 LeetCode->LongestCommonPrefix
// //LongestCommonPrefix.c //
Algorithms
// //CreatedbyTTcon15/6/12. //Copyright(c)2015年TTc.Allrig
liutianshx2012
·
2015-06-12 10:00
C实现 LeetCode->Integer to Roman
convertittoaromannumeral.Inputisguaranteedtobewithintherangefrom1to3999.将一个整形转换为罗马字符 int范围(1-3999)// //IntegerToRoman.c //
Algorithms
liutianshx2012
·
2015-06-11 11:00
C实现 LeetCode->Reverse Integer
2: 逆转整数可能溢出;假设输入是一个32位整数,然后反向1000000003溢出// //PalindromeNumber.c //
Algorithms
/
liutianshx2012
·
2015-06-11 10:00
C实现 LeetCode->Palindrome Number
Determinewhetheranintegerisapalindrome.Dothiswithoutextraspace.判断一个整形是不是回文,不能使用额外的空间 扩展:(判断一个字符串是不是回文 ;一个单链表是不是回文;一个栈是不是回文)// //PalindromeNumber.c //
Algorithms
liutianshx2012
·
2015-06-11 10:00
NoSQL数据库的分布式算法
本文译自 Distributed
Algorithms
inNoSQLDatabases系统的可扩展性是推动NoSQL运动发展的的主要理由,包含了分布式系统协调,故障转移,资源管理和许多其他特性。
panjf2000
·
2015-06-10 23:00
NoSQL
分布式算法
hoj2430 Counting the
algorithms
mostleg Timelimit :1sec Memorylimit :64MSubmitted :725, Accepted :286AsmostoftheACMers,wy'snexttargetis
algorithms
Kirito_Acmer
·
2015-06-10 18:00
树状数组
NoSQL数据库的分布式算法
英文原文:《Distributed
Algorithms
inNoSQLDatabase
BearCatYN
·
2015-06-10 15:00
数据库
NoSQL
分布式算法
leetcode 24 -- Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifytheva
wwh578867817
·
2015-06-08 10:00
list
数据结构与算法
参考书籍1:DataStructuresand
Algorithms
inC++,4thedition-AdamDrozdekC++数据结构与算法,要求有基本的C++编程经验,否则还是看严蔚敏版吧。
沐浴星光
·
2015-06-07 16:00
7. C#数据结构与算法 -- 存储结构(单链表)
理论:[参考文献:1.严蔚敏.数据结构(C语言版);2.陈广.数据结构(C#语言描述);3.MichaelMcMillan.DataStructuresand
Algorithms
UsingC#]1.线性表的链式存储结构
chenhao_asd
·
2015-06-05 17:09
C#
7. C#数据结构与算法 -- 存储结构(单链表)
理论:[参考文献:1.严蔚敏.数据结构(C语言版);2.陈广.数据结构(C#语言描述);3.MichaelMcMillan.DataStructuresand
Algorithms
UsingC#]1.线性表的链式存储结构
chenhao_asd
·
2015-06-05 17:09
C#
#面试准备#算法笔记
http://jeffe.cs.illinois.edu/teaching/
algorithms
/notes/Indexof/teaching/
algorithms
/notesParentDirectory0
ChiBaoNeLiuLiuNi
·
2015-06-05 01:00
Algorithm
算法
面试
RFC1889(3) RTP
Algorithms
We provide examples of C code for aspects of RTP sender and receiver
algorithms
.
xinghe333
·
2015-06-02 18:10
RTP
RFC1889
LeetCode 137:Single Number II
Givenanarrayofintegers,everyelementappearsthreetimesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
sunao2002002
·
2015-06-01 22:00
LeetCode
number
number
single
single
II
E. LIS of Sequence(好题 LIS )
E.LISofSequencetimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputThenext"DataStructuresand
Algorithms
"lessonwillbeaboutLongestIncreasingSubsequence
kalilili
·
2015-05-31 12:00
STL中常用容器的选择
算法(
algorithms
):各种常用算法,如sort,search,copy...从实现角度看
JustSlower
·
2015-05-28 20:07
C++
STL
泛型编程
LeetCode - First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
yuanhisn
·
2015-05-28 09:00
2.28SwapNodesinPairs
Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythevaluesinthe
ZhikangFu
·
2015-05-26 15:00
算法学习之路和程序员(技术)学习必读书籍
我的算法学习之路原文链接:http://lucida.me/blog/on-learning-
algorithms
/关于严格来说,本文题目应该是我的数据结构和算法学习之路,但这个写法实在太绕口——况且CS
tham_
·
2015-05-26 09:56
Career
Book
算法学习之路和程序员(技术)学习必读书籍
我的算法学习之路原文链接:http://lucida.me/blog/on-learning-
algorithms
/关于严格来说,本文题目应该是我的数据结构和算法学习之路,但这个写法实在太绕口——况且CS
tham_
·
2015-05-26 09:00
算法学习
程序员必读书籍
算法学习之路
算法学习经验总结
技术学习必读书籍
AMC 期刊
4832ACMJOURNALONEMERGINGTECHNOLOGIESINCOMPUTINGSYSTEMSACMJEMERGTECHCOM0362-1340ACMSIGPLANNOTICESACMSIGPLANNOTICES1549-6325ACMTRANSACTIONSON
ALGORITHMS
ACMTA
苝極鉯苝
·
2015-05-25 10:00
leetcode
algorithms
: two sum
Givenanarrayofintegers,findtwonumberssuchthattheyadduptoaspecifictargetnumber.ThefunctiontwoSumshouldreturnindicesofthetwonumberssuchthattheyadduptothetarget,whereindex1mustbelessthanindex2.Pleasenote
hhli
·
2015-05-24 11:32
算法与数据结构
LeetCode 24 - Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.For example:Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Note:Your
algorithms
houlduseonlyconstantspace.Youmaynotmodify
lisong694767315
·
2015-05-24 08:00
LeetCode
swap
LinkedList
openssl常用命令(待补充)
1.测试openssl对各种见算法处理速度openssl speed [
algorithms
]
algorithms
:各种算法 eg.rsa,des,md5,sha1等。
lx199181625
·
2015-05-23 21:32
OpenSSL
leetcode刷题,总结,笔记,备忘。136
*Note: *Your
algorithms
houldhavealinearruntimec
guicaisa
·
2015-05-22 22:00
LeetCode
Algorithm
Data Structures and
Algorithms
in Python:Python中的数据结构和算法
1.1PythonOverview:Python的概述Buildingdatastructuresand
algorithms
requiresthatwecommunicatedetailedinstructionstoacomputer.Anexcellentwaytoperformsuchcommunicationsisusingahigh-levelcomputerlanguage
584250550
·
2015-05-19 20:57
Education
Industry
detailed
Data Structures and
Algorithms
in Python:Python中的数据结构和算法
1.1PythonOverview:Python的概述Buildingdatastructuresand
algorithms
requiresthatwecommunicatedetailedinstructionstoacomputer.Anexcellentwaytoperformsuchcommunicationsisusingahigh-levelcomputerlanguage
584250550
·
2015-05-19 20:57
Education
Industry
detailed
Data Structures and
Algorithms
in Python:Python中的数据结构和算法
1.1PythonOverview:Python的概述Buildingdatastructuresand
algorithms
requiresthatwecommunicatedetailedinstructionstoacomputer.Anexcellentwaytoperformsuchcommunicationsisusingahigh-levelcomputerlanguage
584250550
·
2015-05-19 20:57
education
industry
detailed
Python
GitHub同步已经Fork的开源代码
最近Fork了一个很不错的C++实现的算法集(https://github.com/xtaci/
algorithms
),如何与开源代码同步的问题也就产生了,同步方式如下:1首先,在自己的GitHub上Fork
lanbing510
·
2015-05-19 00:00
遗传算法Java实现源代码
http://www.cnblogs.com/wintys/archive/2013/04/07/genetic_
algorithms
.htmlhttp://www.cnblogs.com/biaoyu
executor
·
2015-05-18 15:00
C++语言笔记C11库
1.C++函数库
Algorithms
C Library Wrappers , , , , , , , , , , , , , , , , , , , , , , Containers Sequence
a_liujin
·
2015-05-17 11:36
C++
笔记
上一页
102
103
104
105
106
107
108
109
下一页
按字母分类:
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
其他