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
Intle
剑指offer最优解Java版-调整数组顺序使奇数位于偶数前面
第一种方案对于每一位数字进行类似冒泡的算法,将其挪至数组开头publicclassSolution{publicvoidreOrderArray(int[]array){
intle
全菜工程师小辉
·
2021-06-11 20:45
c语言二叉树链式存储,二叉树链式存储基本操作(C语言)
struct_binnode*rchild;}BinNode;/**二叉树结构*///可以定义,也可以不定义,主要使用其中的根结点typedefstruct_bintree{BinNode*root;//二叉树根结点
intle
留德小罗
·
2021-05-17 15:09
c语言二叉树链式存储
二刷76. Minimum Window Substring
还有注意下substring这个API,没有substring(intstartIndex,
intle
greatfulltime
·
2021-04-26 05:18
C++归并排序
includeusingnamespacestd;staticint*leftArray;//合并voidmerge(intbegin,intmid,intend,int*array){//左边数组的索引intli=0;//左边数组最右边的索引
intle
叶卡捷琳堡
·
2021-02-11 14:44
数据结构与算法
c++
算法
数据结构
排序算法
(详细图解) 逆波兰表达式
constauto&str:tokens){if(str=="+"||str=="-"||str=="*"||str=="/"){//遇到操作符//取出两个操作数intright=st.top();st.pop();
intle
殇&璃
·
2020-11-23 22:24
算法/OJ题目
Swift类和子类的初始化总结
Swift中类的初始化的时候,所有存储属性(StoredProperty)要么有初始值,要么在初始化的时候通过init赋值(optional除外),否则编译不通过,比如:classCar{letwheel:
Intle
赵邦华
·
2020-10-24 15:38
iOS
swift
class
类
数据结构习题——2线性表的就地逆置
input第一行输入线性表元素个数elenum;(0#includetypedefstructSeqList{int*a;
intle
chen_2511
·
2020-09-17 10:57
DataStruct
分治——排序(1 <= n <= 100000)
问题B:排序(1usingnamespacestd;inttemp;inta[100000];voidqsort(
intle
,intri){inti=le,j=ri,mid=a[(le+ri)/2];while
你看起来很好吃哦
·
2020-09-17 02:10
分治
插入排序的三种方法
defineMaxSize100/**a为待排序的数组,length为数组长度*/voidinSort(inta[],intlength);/**进行数组元素的输出*/voiddisplayArray(inta[],
intle
hong_wei_dong
·
2020-09-16 15:07
数据结构
【洛谷 P5341】 [TJOI2019]甲苯先生和大中锋的字符串(后缀自动机)
#include#include#includeusingnamespacestd;constintMAXN=100010;structSAM{intch[26];
intle
weixin_34167819
·
2020-09-16 00:22
手写 大整数
3usingnamespacestd;4typedeflonglongLL;5constintM=1e2+10;67classBigInteger{8staticconstintM=1e2+10;9chars[M];10
intle
as305323460
·
2020-09-15 22:26
luoguP1080 国王游戏 题解(NOIP2012)(贪心+高精)
definergregister#definelllonglong#defineN10001#defineinf1000000010usingnamespacestd;intn,a,b;structT{
intle
eternal风度
·
2020-09-14 00:07
求众数(c语言)
include#include#includevoidsort(int*p,intlength)//冒泡,从大到小排序{inti=0,j=0;inttemp[128];intnum_sort[128];
intle
womozhi
·
2020-09-13 17:07
CC++
输出固定长度字符串,多余位补0
12300000代码:#include#defineMAX1000usingnamespacestd;intmain(){charstr[MAX];cin.getline(str,MAX);intn;cin>>n;
intle
twc829
·
2020-09-13 06:36
华为机试题目
linux网络编程多进程并发服务器
definePORT1234#defineMAXSIZE1024structARG{intconnfd;structsockaddr_inclientAddr;};voidsavedata(char*recvbuf,
intle
云信
·
2020-09-13 05:48
网络编程
linux操作系统
setsockopt ,getsockopt
用法:intgetsockopt(intsock,
intle
Irean_Lau
·
2020-09-13 04:39
Linux
关于string::size()、length()以及find()系函数使用上的注意事项
当时我的判断是这么写的:if(j
intle
Caronell
·
2020-09-12 08:28
信息学奥赛一本通 1172:求10000以内n的阶乘(高精度乘以单精度)
includeusingnamespacestd;constintN=40000;intans[N];//数组ans存放大整数结果,ans[0]存放个位,依次类推intmain(){intn;cin>>n;ans[0]=1;
intle
WA-Accepted
·
2020-09-12 07:46
高精度
2020-08-21 算法合集
{std::swap(array[j],array[j+1]);}}}}2.选择排序/***选择排序*@paramarray*@paramlen*/voidselectSore(intarray[],
intle
猫KK
·
2020-08-31 15:52
协议消息与应用程序事件的统一分发框架
structIMsgHandler{virtualvoidHandle(constchar*buf,
intle
herm_lib
·
2020-08-26 23:13
Herm服务器引擎
CodeForces 548D - Mike and Feet(单调栈)
给定一组长度为n的序列a[1],a[2]…a[n](nusingnamespacestd;constintinf=2e9;constintmaxn=2e5+50;intn;inta[maxn];stackst;
intle
SingleK
·
2020-08-26 11:06
数据结构-----单调栈
nyoj 36 最长公共子序列
x:y;}intmain(){intT;
intle
angel_e
·
2020-08-26 08:56
水~~~
算法
密码验证合格程序--牛客华为
如果符合要求输出:OK,否则输出NGc++#include#include#includeusingnamespacestd;//统计长度超过2的子串重复intsub(stringstr1){inti,j,k=1;
intle
qiankandichang
·
2020-08-25 01:36
c++
python
poj 2001 Shortest Prefixes
我们只需要沿着以该单词构建的字典树走,输出所有cnt>1的结点和最后一个cnt==1的结点既得答案#include#include#include#includeusingnamespacestd;charch[1500][30];
intle
xiaoyulunUSC
·
2020-08-24 21:06
字典树
快排例子
};//递归调用QuickSort(a,0,a.length-1);for(inti=0;i=r){return;//l和r代表左右两边的的萝卜下标}intkey=a[l];//挖出第一个萝卜备用,3
intle
可口可乐的配方
·
2020-08-23 23:13
结构体动态数组的定义及操作
typedefstructbase_array{intsize;intcount;structbase*data;}base_array;/*创建一个基站的结构体*/typedefstructbase{charid[6];
intle
weixin_30542079
·
2020-08-23 20:19
线性表中顺序表相关完整代码
defineMAXSIZE100#defineElemTypeint#defineStatusint#defineERROR-1#defineOK1typedefstruct{ElemType*elem;
intle
噗嗤噗嗤不拉不拉
·
2020-08-23 19:54
数据结构
递归迭代
elsereturn1;}intmain(){inta=40;ints=0;if(a>2)s=fi(a);elses=1;printf("%d\n",s);return0;}迭代,斐波那契数列intdi(intn){
intle
佳佳学LinuxC
·
2020-08-23 11:07
递归循环
P1019-单词接龙
word变量中需要包括字母数和剩余使用数,需要搜索以及对开头单词的搜索;代码:#include#include#includeusingnamespacestd;intn,sum=0;structWord{
intle
红点雷龙XL
·
2020-08-23 03:39
洛谷
统计字符串中出现次数最多的字母及其出现次数C++
stringch;inttotal;}sum;boolcmp1(suma,sumb){returna.total>b.total;}intmain(){stringstr;getline(cin,str);
intle
Luminous_kkm
·
2020-08-23 02:12
小程序
洛谷 P3955 图书管理员(模拟)
代码如下:#include#include#include#includeusingnamespacestd;structReader{
intle
elorole
·
2020-08-23 00:27
模拟
leetcode——分治法
那么我们可以写出二分查找法的代码如下:intfind(vector&nums,inttarget){intleft=0,right=nums.size();while(left&nums,inttarget){
intle
qq_43808588
·
2020-08-22 02:43
leetcode
Jsp生成静态页面
buildhtml.jsp");StringtemplateContent="";FileInputStreamfileinputstream=newFileInputStream(filePath);//读取模块文件
intle
goby2008
·
2020-08-20 16:47
struts
jsp
string
calendar
stylesheet
html
exception
找出一个个既有正数又有负数的数组中子数组的和的最大值
#includeintMaxSum;voidFindMax(int*res,
intle
bama2488313716
·
2020-08-18 14:19
算法分析
快速排序(C语言)
输入样例:11498110-170-202950843-5输出样例:-20-17-504810294350981参考答案:#include#includetypedefstruct{int*a;
intle
WayserKON
·
2020-08-16 06:25
HDU 1506 DP 最大完全子矩阵
记录每个位置左边大于等于它的个数,和右边大于等于它的个数#include"stdio.h"
intle
[100010],ri[100010];__int64ans,x,a[100010];intmain(
BSOD_aura
·
2020-08-14 04:34
最长公共子序列问题
=NULL){gets(b);inti,j;intc[505][505];intlen1=strlen(a);
intle
忆昔,仰优
·
2020-08-13 18:46
子段问题
hdu4414Finding crosses 水题
0,0,1,-1};intdy[4]={1,-1,0,0};booljudge(intx,inty){if(xn||yn)returnfalse;returntrue;}intdfs(intx,inty,
intle
ijbuhv
·
2020-08-12 16:00
给出一个列表,将列表向右旋转k个地方,其中k是非负数。
head||k==0)returnhead;
intle
i_am_bird
·
2020-08-10 16:48
C++
leetcode
算法
decimal保留指定位数小数 不四舍五入
;
intle
djk8888
·
2020-08-10 16:15
CString与char之间的转换
LPCSTR)str;charToCString1)、charbuf;CStringstr(buf);2、Unicode字符集下:CStringTochar:1)、CStringst=_T(“123”);
intle
huangguangzhi88
·
2020-08-08 16:05
VC++
C++通过Read函数读取文件
),以及流的长度比如我们要读取txt文件中的内容ifstreamin("TEST.txt");先通过文件流将流与txt文件绑定,然后获取文件长度in.seekg(0,in.end);//追溯到流的尾部
intle
alex1997222
·
2020-08-08 14:50
C/C++
2011北理机试题——层次关系
建立索引树,structnode{stringname;
intle
咖喱波特
·
2020-08-06 12:42
北理复试机试题
字符串
算法
CCF 201703-3 Markdown
gpid=T55按题意写呗,把区和行的转换分开#include#includeusingnamespacestd;stringAA(stringstr){stringx;intf=0;
intle
=str.size
Bendaai
·
2020-08-05 21:09
Java字符串String的trim()方法源码解析
首先,贴上trim()方法的源码publicStringtrim(){
intle
Alice_Asuna
·
2020-08-03 19:49
Java探讨
PC主要硬件及购机常识
CPU的主要参数(1)字长:目前大部分为32、64位操作系统,字长越大,数的表示范围越大,精度越高,运算速度越快(2)主频:目前主频在2.4Ghz往上,主频越大,其CPU运算速度越快2.主流产品(1)
Intle
ailanboo
·
2020-08-03 14:48
PC
学习笔记-二分查找
@paramleft左边索引*@paramright右边索引*@paramvalue要查找的值*@return要查找的下标*/publicstaticintbinarySearch(int[]arr,
intle
Shine_QianMo
·
2020-08-02 22:40
算法
广义SAM总结
插入节点模板structTrie{introot,siz;intnxt[MAX_N][26],fa[MAX_N],ch[MAX_N];//ch[i]节点i对应的字符voidinsert(char*s){
intle
4790iop
·
2020-08-02 20:24
字符串
Android-Volley解析中文乱码
Android-HttpClient连接网络获取数据中使用HttpURLConnection的时候,就手动去设置了编码格式:publicStringgetStringFromStream(InputStreamin,
intle
Conway chen
·
2020-08-01 02:32
Android-网络
BZOJ3926 (后缀自动机)
intdeg[N];intn,c;structSuffix_Automanon{intnt[N][15],fail[N],a[N];intp,q,np,nq;inttot,root;intnewnode(
intle
aekijekzn484879763
·
2020-07-31 15:56
上一页
1
2
3
4
5
下一页
按字母分类:
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
其他