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
Intl
543. Diameter of Binary Tree
右子树的最大深度+左子树的最大深度2,不通过ROOT节点,存在在于两个子树中的一个计算3中情况的最大值intdepth(structTreeNode*root){if(root==NULL)return0;
intl
larrymusk
·
2020-10-11 11:42
CodeFoeces-981A
代码#includeusingnamespacestd;intmain(){strings;cin>>s;
intl
=s.length();intflag=0;for(inti=0;i
ss5smi
·
2020-10-10 18:48
二分法
模板一(右合法[l,r]——>[l,mid][mid+1,r]intsearch_1(
intl
,intr){while(l>1;if(check(mid))r=mid;elsel=mid+1;}returnl
辛夷腊八
·
2020-10-09 14:07
算法
建立一个属于自己的网站需要哪些部分组成?
structnode{
intl
,r;//左右儿子结点编号,因为不满足2*rt规律intsum;//代表(l,r)区间上和是多少}T[maxn*40];//T[]表示每一棵树vectorv;intgeti
流浪街头℡
·
2020-10-08 14:20
react-
intl
实现React国际化多语言的方法
本文主要介绍了react-
intl
实现React国际化多语言的方法,分享给大家,具体如下:效果预览ReactIntl国际化步骤创建国际化资源文件根据语言获取国际化资源引入react-
intl
的localdata
·
2020-09-28 16:57
力扣二分搜索的总结
元素可重复)力扣81力扣154二分搜索总结找目标数有序数组(无重复元素)力扣704基本写法classSolution{publicintbinarySearch(int[]nums,inttarget){
intl
PMPWDF
·
2020-09-27 21:07
Java学习
LeetCode 33. 搜索旋转排序数组
我们只要在有序的半段里用首尾两个数组来判断目标值是否在这一区域内,这样就可以确定保留哪半边了publicstaticintsearch(int[]nums,inttarget){if(nums==null||nums.length==0)return-1;
intl
渣一个
·
2020-09-17 15:18
算法
LeetCode
33.
搜索旋转排序数组
Leetcode 315 计算右侧小于当前元素的个数
第二次WA:判断q的位置的时候,是a[p]countSmaller(vector&nums){if(nums.empty()){returnnums;}else{
intl
=nums.si
wrnge
·
2020-09-17 13:58
oj
hdu1231
inti;intj=0;while(cin>>n,n){memset(a,0,sizeof(a));intstart=0,end=0;intk=0;intsum=0,Max=0;intcount=0;
intL
weixin_33834075
·
2020-09-17 13:14
数位DP HDU-3652
(x):(y))#definemin(x,y)((x)>n){
intl
=0;w
跑调的叶子
·
2020-09-17 13:40
题和早期用的模板
基本排序
#include#includeintb[11111];intnum[11111];//归并排序voidmergeSort(int*a,
intl
,intr){if(r-l=r)b[i++]=a[p++]
丨丨M丨丨
·
2020-09-17 13:56
[LeetCode] 315
CountofSmallerNumbersAfterSelf题目:给定一个数列,返回vectorcount,count[i]代表nums中在nums[i]之后且比nums[i]小的数字的个数思路:建立BST,每个节点除了左右child之外增加一个
intl
增强萨
·
2020-09-17 13:17
leetcode
c++
poj 1442 treap
treap#include#include#include#include#includeusingnamespacestd;#defineMX30010intsize,root;structNode{
intl
rptotal
·
2020-09-17 12:57
ACM
110 Balanced Binary Tree
public:intgetDepth(TreeNode*root){if(root==NULL)return0;if(root->left==NULL&&root->right==NULL)return1;
intl
nianiajr
·
2020-09-17 11:50
LeetCode
111 Minimum Depth of Binary Tree
public:intminDepth(TreeNode*root){if(root==0)return0;if(root->left==NULL&&root->right==NULL)return1;
intl
nianiajr
·
2020-09-17 11:50
LeetCode
找出第K小的数
每组输入n,然后输入n个整数(1=right)return;
intl
=left;intr=right;inti=l+1;inttmp=arry[l];while(itmp)swap(&arry[i],&
Elegdawnce
·
2020-09-17 10:33
c语言试题
hdu2041(二分)
#include#include#include#include#include#includeusingnamespacestd;constintmaxn=505;intant;intflag=0;
intl
一条菜狗
·
2020-09-17 10:50
ACM
hihocoder 1665
include5#include6#include7#defineMAXN1000108#defineinf0x3f3f3f3f910usingnamespacestd;1112structnode{13
intl
A1823085974
·
2020-09-17 10:38
字符串的单词逆序,字母不逆序
#include#include#include#includeusingnamespacestd;voidswap(chars[],
intl
,intr){chars1;while(l
qq_39874020
·
2020-09-17 08:39
c
重新格式化字符串
classSolution{publicstaticStringreformat(Strings){intnum=0;intres=0;
intl
小九姑娘&
·
2020-09-17 07:33
字符串
数组循环左移P位算法
题目:对一个数组,进行左移p位操作,要求时间、空间复杂度尽量低*/#include#defineMAXSIZE20intnumber[MAXSIZE];voidRe(intR[],
intl
,intr){
py_game
·
2020-09-17 07:35
BZOJ 1010 玩具装箱
//ByYY_More#includestructpoint{longlongx,y;}now,D[50010];
intL
,R,N,W;longlongC[500010];inlinelonglongxmul
aimifeng9177
·
2020-09-17 06:26
Google推DNS服务,IP地址8.8.8.8和8.8.4.4 这IP地址太牛了
好处是:不会有电信的弹出广告推送广告,有些被电信DNS过滤的网站可以访问到,输错网址不会进电信那个114查询页面等等Google官方页面:http://code.google.com/
intl
/zh-CN
lnz1989
·
2020-09-17 05:58
网络
C - Coprime Sequence
x,则x最大为a[2],所以x的取值(i=a2;i>=1;i–)(从大向小取,求最大公约数),直到数列里至少有n-1个数可以整除i,i值即为x/**/#includevoidqsort(inta[],
intl
mxqsgxxn
·
2020-09-17 04:00
Google play市场描述及定位工具整理
free-aso-tools/keyword-counter关键词建议https://app.neilpatel.comGoogle市场分析https://marketfinder.thinkwithgoogle.com/
intl
luckygirk
·
2020-09-17 03:30
游戏出海
顺时针打印数组
matrix.size();//行数intcol=matrix[0].size();//列数intcircle=((rowyoufor(intj=i;jxiafor(intk=i+1;kzuofor(
intl
Irean_Lau
·
2020-09-17 03:14
剑指offer
hdu 4677 并查集合并(两个相邻区间并查集的合并)+分块算法 好题
点数n(n#include#include#include#include#include#include#include#include#include#include#definetreeinto,
intl
weixin_30384031
·
2020-09-17 03:32
用快排解决第k小数问题
平均情况下时间复杂度为O(n)#includeusingnamespacestd;#definelllonglongconstintN=1e5+5;inta[N];intn,k;intquicksort(
intl
墨韵*
·
2020-09-17 02:25
清华数据结构(上) PA1 & PA2
#includeusingnamespacestd;constintN=5*1e5+10;inta[N],m,n;
intl
,r,mid,x,y,rt;voidquick_sort(
intl
,intr){
qq_43732110
·
2020-09-17 02:54
数据结构
Acwing 107.超级快速排序【归并排序,逆序对】
includeusingnamespacestd;constintMAXN=5e5+10;typedeflonglongLL;intn;LLs[MAXN],tmp[MAXN],cnt;voidmerge_sort(
intl
丶Kingdom
·
2020-09-17 02:52
Acwing题库
PAT考试乙级1015(C语言实现) 重点题目
;intD;//德virtueintC;//才abilityintflag;//是否有资格intsum;};typedefstructStudent*Student;intrank(Students,
intL
JeffreyDDD
·
2020-09-17 01:13
PAT
不同的幂值
projecteuler.net/problem=29#include#include#include#include#includeusingnamespacestd;intmain(){setsp;
intl
realjc
·
2020-09-17 00:58
编程基础
堆
HeapBuild创建//筛选法templatevoidSiftDown(TData[],inti,intn){//用来保持以结点i为根的最小堆的性质,n是所有元素的个数
intl
=2*i+1,r=2*i
魔仙佩奇
·
2020-09-16 23:07
在线API入口
w3cSchool-javascriptDom[url]http://www.w3school.com.cn/h.asp[/url]GoogleAppEngine[url]http://code.google.com/
intl
qq249663289
·
2020-09-16 23:14
资料下载
Google
ASP
JavaScript
Java
HTML
屏幕输入一个数字,以十六进制的方式输出它
屏幕输入一个数字,以十六进制的方式输出它*/Scannersc=newScanner(System.in);System.out.println("输入一个数字:");intnum=sc.nextInt();
intl
一只路过的小码农
·
2020-09-16 20:42
java小代码
给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。
控制最长子串的开头第二个for控制最长子串的结尾第三个for判断子串是否有重复字符遍历整个字符串输出最长子串的长度三、代码C语言代码:#include#includeintlength(charc[],
intl
ssc_zcys
·
2020-09-16 19:05
题集
字符串
算法
[bzoj2824][AHOI2012]铁盘整理
冒泡排序强无敌Orzw_yqts爆搜剪枝#include#includeusingnamespacestd;shorta[51],b[51],n,tot,l,r;inlinevoidrotate(
intl
YZH__12345
·
2020-09-16 18:33
搜索
剪枝
php5.4.31安装php_fileinfo扩展和php_
intl
扩展
相关软件下载经测试lnmp1.1升级php5.4.31可用lnmpa1.1升级php5.4.31不可用,会变一个关于apache的错误首先安装lnmp1.1lnmp1.1安装lnmp1.1升级php5.4.31cd/root/lnmp1.1-full/./upgrade_php.sh5.4.31安装php_fileinfo扩展cd/root/lnmp1.1-full/php-5.4.31/ext/
电公子
·
2020-09-16 18:55
php
算数表达式转DAG
vectorsuffix_expression;vectoroperator_stack;vectoropt_table;mapopt_id_map;mapopt_priority;structnode{
intl
Gipsyu
·
2020-09-16 17:20
WebView滑动监听
滑动监听的话是需要在WebView基础之上在加强一下,因为在WebView没有直接监听滑动的方法,看WebView的源码则会发现有一个protectedvoidonScrollChanged(
intl
,
zengqing_Android
·
2020-09-16 17:15
Android
android
WebView
滑动
监听
定长顺序串基本操作实现
definemaxsize100typedefintstates;typedefchardatatype;#defineERROR0#defineFALSE0#defineOK1#defineTRUE1typedefstruct{charch[maxsize];
intl
Changepeng2017
·
2020-09-16 16:46
串
c语言
数据结构
尺取法-最短的包含字符串
字符串的长度usingnamespacestd;intmain(){intnums[26];//用于标记A~Z出现的次数strings;cin>>s;charcur;
intL
=0,
PyhonLong
·
2020-09-16 14:07
简单的Box类求体积及表面积
classBox{intlength;intwidth;intheight;voidsetInfo(
intl
,intw,inth){length=l;width=w;height=h;}intvolume
qq_38402311
·
2020-09-16 14:10
java
Box
立方体类
#includeusingnamespacestd;classCube{public://设置长voidsetL(
intl
){m_L=l;}//获取长intgetL(){returnm_L;}//设置宽
Gravity master
·
2020-09-16 13:42
“美登杯”上海市高校大学生程序设计邀请赛
#includeusingnamespacestd;intmain(){intn,q;cin>>n>>q;chars[100005];cin>>s;while(q--){
intl
,r;cin>>l>>r
codehappy123
·
2020-09-16 11:52
总结
找出数组中的最大值和次大值
较大值4#includeusingnamespacestd;voidmaxAndSec(vector&nums,
intl
思翊
·
2020-09-16 10:15
Algorithm
leetcode647回文子串
palindromic-substrings/submissions/2、题意题解1:写了个暴力虽然过了时间复杂度很高classSolution{public:boolis_huiwen(stringtemp){
intl
everlasting_lxy
·
2020-09-16 10:47
leetcode
leetcode
算法笔记——左神初级(2)快速排序、堆排序
快速排序快速排序的核心思想是按基准值分区:荷兰国旗问题:publicstaticint[]partition(int[]arr,
intL
,intR,intp){intless=L-1;intmore=R
猪施主
·
2020-09-16 09:29
算法笔记
算法
数据结构
堆排序
快速排序
归并排序
实现#include#includeintnumarray[16]=...{12,9,1,87,28,10,4,99,299,2,99,12,112,76,9,33};voidMerge(intA[],
intl
mars131
·
2020-09-16 08:15
算法
C/C++
programing
Google Chrome 49.0.2623.112 XP系统最终版离线安装包官方下载地址
官方网站:https://www.google.com/
intl
/zh-CN/chrome/32位版离线安装包下载地址:https://dl.google.com/release2/h8vnfiy7pvn3lxy9ehfsaxlrnnukgff8jnodrp0y21vrlem4x71lor5zzkliyh
weixin_38171245
·
2020-09-16 06:23
上一页
20
21
22
23
24
25
26
27
下一页
按字母分类:
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
其他