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
example1
Bayesian Decision Theory
Chapter1--------贝叶斯决策公式(BayesianDecisionTheory)
Example1
:学校里有男生m1m_1m1人,女生m2m_2m2人,男生身高175以上的有n1n_1n1人
花生酱拌鱿鱼须
·
2020-08-18 16:40
LeetCode_Easy心得:7. Reverse Integer(C语言)
*/
Example1
:x=123,return321Example2:x=-123,return-321/**代码思路:通过对输入的x不断进行以10为除数的取余和整除操作,取余操作目的是提取x最低位,接着使用整除来过滤
hhhhhyb
·
2020-08-18 08:44
LeetCode_Easy
LeetCode 4. Median of Two Sorted Arrays
DescriptionTherearetwosortedarraysnums1andnums2ofsizemandnrespectively.Findthemedianofthetwosortedarrays.TheoverallruntimecomplexityshouldbeO(log(m+n)).
Example1
cqx5555
·
2020-08-18 08:24
leetcode
leetcode--4. Median of Two Sorted Arrays
Therearetwosortedarraysnums1andnums2ofsizemandnrespectively.Findthemedianofthetwosortedarrays.TheoverallruntimecomplexityshouldbeO(log(m+n)).
Example1
林伏案
·
2020-08-18 07:37
(Java)leetcode-14 Longest Common Prefix
Writeafunctiontofindthelongestcommonprefixstringamongstanarrayofstrings.Ifthereisnocommonprefix,returnanemptystring“”.
Example1
Mr.Bean-Pig
·
2020-08-18 07:55
算法题解
Leetcode 14. Longest Common Prefix
Writeafunctiontofindthelongestcommonprefixstringamongstanarrayofstrings.Ifthereisnocommonprefix,returnanemptystring"".
Example1
wenmiao_
·
2020-08-18 06:37
LeetCode
Codewars刷题升级 (Python)6Kyu Which are in? 谁在里面?
#
Example1
:示例一:a1=
Howar Yick
·
2020-08-18 05:06
Codewars刷题
LeetCode第14题:Longest Common Prefix(C++)详解
LeetCodeLongestCommonPrefixWriteafunctiontofindthelongestcommonprefixstringamongstanarrayofstrings.Ifthereisnocommonprefix,returnanemptystring“”.
Example1
Mark-Wang
·
2020-08-18 03:44
leetcode
[Leetcode] 397. Integer Replacement 解题报告
Example1
:Input:8Outpu
魔豆Magicbean
·
2020-08-17 23:22
IT公司面试习题
Leetcode 算法题14
35.SearchInsertPosition输入一个排好序的列表和一个目标值,求这个目标值在列表中的索引,不在的话求这个目标值排序时应该在列表中位置的索引
Example1
:Input:[1,3,5,6
li5226966
·
2020-08-17 23:37
leetcode 14 Longest Common Prefix C++实现
Writeafunctiontofindthelongestcommonprefixstringamongstanarrayofstrings.Ifthereisnocommonprefix,returnanemptystring“”.
Example1
stu_h
·
2020-08-17 20:29
LeetCode
C++
LeetCode 14 — Longest Common Prefix(最长公共前缀)
Writeafunctiontofindthelongestcommonprefixstringamongstanarrayofstrings.Ifthereisnocommonprefix,returnanemptystring“”.
Example1
卓尔货币
·
2020-08-17 19:32
算法笔记
LintCode 147.水仙花数 N位自幂数
样例.
Example1
:Input:1Output:[0,1,2,3,4,5,6,7,8,9]Example
敲代码的猪猪精
·
2020-08-17 17:15
数据结构与算法
Lua 字符串实践 -- 过滤词库算法
note目录过滤词字典结构构造过滤词树结构测试
example1
:过滤词字典结构WordMap.lua文件WordMap=luaclass("WordMap")functionWordMap:Init()
qingqinglee
·
2020-08-17 02:56
Lua
Lua常用字符串操作
Lua过滤词算法
Lua utf8中文字符个数和子串截取
note目录utf8字符规律utf8中文字符的大小(占多少个字节)utf8字符串的长度utf8获取字符串的子串测试
example1
:utf8字符规律字符串的首个byte表示了该utf8字符的长度utf8
qingqinglee
·
2020-08-17 02:55
Lua
jQ 表单验证插件
/****表单验证插件*@authorchenshuofeng**use:*
example1
*-------*HTML:*****-------*JS:*$("#checkInput").checkInput
梦想就是大神
·
2020-08-16 18:35
Web for pentester靶机sql注入
Example1
这关进来以后是这样的:从这个页面中我们可以得到name就是注入点,所以就先判断出它的闭合方式,经过尝试发现它是由单引号闭合的,知道闭合方式以后就开始判断它的列数了:'orderby5--
Long_gone
·
2020-08-16 11:03
sql
研磨设计模式 配套源代码发放
源代码的说明:1:本源代码是《研磨设计模式》一书的配套源代码2:每个模式的示例源代码放在一个单独的文件夹下,以该模式的英文名称命名3:每个模式下分成多个example,按照书的示例顺序分别命名为
example1
iteye_3810
·
2020-08-15 23:24
研磨设计模式
设计模式
LintCode 114,115. 不同的路径
样例
Example1
:Input:n=1,m=3Output:1Explanation:Onlyonepathtotargetposition.Example2:Input:n=3,m=3Output:
林间松韵
·
2020-08-15 18:30
数据结构与算法
[Leetcode学习-java]Remove K Digits(去掉K个数字)
,string都是0~9字符Thelengthofnumislessthan10002andwillbe≥k.Thegivennumdoesnotcontainanyleadingzero.输入案例:
Example1
qq_28033719
·
2020-08-15 11:59
Java
leetcode647 回文子串的数量
Example1
:Input:"abc"Output:3Explanation:Threepalindromicstrings:"a","b","c".Example2:Input:"aaa"Output
慵懒的猫
·
2020-08-15 03:48
算法
css中border属性的特殊用法(实现特殊形状)
css中border属性的特殊用法(实现特殊形状)效果图如下:HTML代码:Example1Example12Example3JavaScriptCSS代码:.
example1
{height:100px
奋发的小鸟hh
·
2020-08-15 01:41
css
leetcode饼干分配
Example1
:Input:第一行贪婪因子,第二行饼干大小12311Output
你跺你也麻.
·
2020-08-14 21:29
算法设计与分析
237. Delete Node in a Linked List
inasinglylinkedlist,givenonlyaccesstothatnode.Givenlinkedlist–head=[4,5,1,9],whichlookslikefollowing:
Example1
realcj2018
·
2020-08-14 19:18
leetcode
leetcode237(python实现)
inasinglylinkedlist,givenonlyaccesstothatnode.Givenlinkedlist–head=[4,5,1,9],whichlookslikefollowing:
Example1
=-=-=
·
2020-08-14 19:56
leetcode腾讯精选50题
leetcode 237. Delete Node in a Linked List(删除链表中的特定节点)
实例//
Example1
:Input:head=[4,5,1,9],node=5Output:[4,1,9]Explanation:Youaregiventhesecondnodewithvalue5,
小白的进阶之路
·
2020-08-14 18:21
leetcode题解
Leetcode237.删除链接列表中的节点
Example1
:Input:head=[4,5,1,9],node=5Output:[4,1,9]Explanation:Youaregiventhesecondnodewithvalue5,thelinkedlistshouldbecome4
Cenergy
·
2020-08-14 18:28
算法
237. Delete Node in a Linked List(水题)
inasinglylinkedlist,givenonlyaccesstothatnode.Givenlinkedlist–head=[4,5,1,9],whichlookslikefollowing:
Example1
Hcaroline
·
2020-08-14 17:38
每日Leetcode
[leetcode] 237. Delete Node in a Linked List @ python
inasinglylinkedlist,givenonlyaccesstothatnode.Givenlinkedlist–head=[4,5,1,9],whichlookslikefollowing:
Example1
闲庭信步的空间
·
2020-08-14 17:18
Leetcode
php对一维数组字符串和数字进行排序
Exampleforsortingbyvaluesforanalphanumericarrayalsohavingcase-sensitivedata$exampleArray1=$exampleArray2=array(0=>'
example1
SHUIPING_YANG
·
2020-08-14 12:31
php
MySQL DDL 修改表字段 修改表类型
Example1
:创建数据库[root@localhost~]#mysql-urootWelcometotheMySQLmonitor.Commandsendwith;or\g.YourMySQL
boya734698063
·
2020-08-14 09:35
mysql
Nginx vhost 多域名配置
conf方法(优点是灵活,缺点就是站点比较多配置起来麻烦)这里以配置2个站点(2个域名)为例,n个站点可以相应增加调整,假设:IP地址:192.168.1.100域名1example1.com放在/www/
example1
weixin_33735077
·
2020-08-14 02:31
Function in Makefile
FunctioninMakefileCallfunction$()or${}
example1
:$(substa,b,$(x))example2:comma:=,empty:=space:=$(empty
leo-Ne
·
2020-08-13 21:31
Makefile
makefile
leetcode【165】Single Number(关于异或)
Example1
:Input:[2,2,1]Output:1Example2:Input:[4,1,2,
请叫我算术嘉
·
2020-08-13 18:38
leetcode
python
674. Longest Continuous Increasing Subsequence(python+cpp)
题目:Givenanunsortedarrayofintegers,findthelengthoflongestcontinuousincreasingsubsequence(subarray).
Example1
小湉湉
·
2020-08-13 16:56
LeetCode
多个背景图片的设计
菜鸟教程(runoob.com)#
example1
{background-image:url(img_flwr.gif),url(paper.gif);//第一个图片在上,可覆盖第二个图片background-position
慵懒_
·
2020-08-12 18:05
web
Python实现"丑数"的一种方法
写一个程序判断给定的整数是否为丑数丑数就是只包含质因数2,3,5的正整数
Example1
:Input:6Output:trueExplanation:6=2× 3Example2:Input:8Output
求兵
·
2020-08-12 15:30
Algorithms
69. Sqrt(x)
Example1
:Input:4Output:2Example2:Input:8Output:2Explanation:Thesquarerootof8is2.82842...,andsincethedecimalpartistruncated
habibah_chang
·
2020-08-11 18:00
C函数——由浅入深
//函数//分类为:1.库函数:注意再使用库函数的时候需要加上相应的头文件//2.自定义函数:它需要的元素有:返回类型、函数名、函数参数////
example1
:////写一个函数可以找出两个整数中的最大值
Sunshine--
·
2020-08-11 10:28
C语言基础
Leetcode 100 SameTree -Java刷题
writeafunctiontocheckiftheyarethesameornot.Twobinarytreesareconsideredthesameiftheyarestructurallyidenticalandthenodeshavethesamevalue.判断两个树是不是一样
Example1
Mereder
·
2020-08-11 01:56
算法-leetcode-每日一题-判断一个整数是否是回文
**
Example1
:Input:121Output:trueExample2:Input:-121Output:falseExplanation:Fromlefttoright,itreads-121
茹果_遇见T
·
2020-08-11 01:41
算法
leetcode记录,难度简单:9.判断整数是否是回文
Example1
:Input:121Output:trueExample2:Input:-121Output:falseExplanation:Fromlef
unAlpaca
·
2020-08-11 00:51
leedcode
利用unordered_map特性求交集
Example1
:Input:nums1=[1,2,2,1],nums
Jeff_
·
2020-08-10 23:59
数据结构与算法
STL
【动态规划】Leetcode编程题解:523. Continuous Subarray Sum Add to List
writeafunctiontocheckifthearrayhasacontinuoussubarrayofsizeatleast2thatsumsuptothemultipleofk,thatis,sumsupton*kwherenisalsoaninteger.样例:
Example1
w_t_youxi
·
2020-08-10 22:53
Leetcode解题报告
leetCode练习(172)
Example1
:Input:3Output:0Explanation: 3!=6,notrailingzero.Example2:Input:5Output:1Explanation: 5!
碰碰猪
·
2020-08-10 21:23
leetCode
Python实现"相同的树"的三种方法
给定两颗二叉树,判断它们是否相同如果两棵树的结构和对应结点的值均相等,就认为它们是相同的树
Example1
:Input:11/\/\2323[1,2,3],[1,2,3]Output:trueExample2
求兵
·
2020-08-10 18:05
Algorithms
Python实现"回文链表"的两种方法
判断给定的链表是否是回文链表
Example1
:Input:1->2Output:falseExample2:Input:1->2->2->1Output:true进阶:用时间复杂度为O(n),空间复杂度为
求兵
·
2020-08-10 18:05
Algorithms
[leetcode] 506. Relative Ranks
findtheirrelativeranksandthepeoplewiththetopthreehighestscores,whowillbeawardedmedals:"GoldMedal","SilverMedal"and"BronzeMedal".
Example1
jing16337305
·
2020-08-10 17:47
leetcode
力扣刷题9.回文数(Java)
PalindromeNumberDeterminewhetheranintegerisapalindrome.Anintegerisapalindromewhenitreadsthesamebackwardasforward.一个整数backward以后还是这个数
Example1
happytaohaha
·
2020-08-10 14:01
力扣腾讯精选50道
opencv学习(一)书本《学习Opencv》(中文版)的第二章的10个入门样例的分析
1显示一张图片(简单)IplImage*img=cvLoadImage(argv[1]);功能:将图像文件加载至内存返回:一个指针,指向该图像文件的数据结构IplImagecvNameWindow("
Example1
非公勿入
·
2020-08-10 06:58
opencv
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
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
其他