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
归并排序(非递归)(C语言)
include"stdlib.h"#pragmawarning(disable:4996)voidSwap(longA[],longi,longj);voidMerge(longA[],longtemp[],
intL
crescentgear
·
2024-01-09 14:57
数据结构
C/C++
c语言
KY23 最小花费 DP
DP,比较恼的是题中没说明a、b的范围,不敢轻易用双循环添加链接描述#includeusingnamespacestd;#definelllonglongconstintINF=1e9+10;
intl
1
QingQingDE23
·
2024-01-09 06:44
算法
快速排序法
分别对左右子序列重复前三步操作(递归操作)视频详解#include#includevoidQKSORT(int*data,intleft,intright){if(left>=right)return;
intl
小陈同学123
·
2024-01-09 02:36
笔记
算法
c++
Java LCR 095. 最长公共子序列
classSolution{publicintlongestCommonSubsequence(Stringtext1,Stringtext2){
intl
1=text1.length(),l2=text2
ClownMing
·
2024-01-08 23:50
java
开发语言
[蓝桥杯学习] ST表
include#includeusingnamespacestd;#definelllonglongconstintN=5e5+5;intn,q;lla[N];llst[N][21];llgetMax(
intl
Waldeinsamkeit41
·
2024-01-08 13:53
蓝桥杯
学习
逆置算法和数组循环移动算法
逆置图解代码//逆置元素算法voidReverse(intR[],
intl
,intr){//R数组,l左边r右边inti,j,temp;for(i=l,j=r;in){cout<<"ERROR"<
小哼快跑
·
2024-01-08 08:07
数据结构
算法
循环左移
逆置算法
数组
(第16题)构造哈夫曼树(难度系数85)
输入:第一行为叶子结点的数目n(1usingnamespacestd;constintN=1010;intw[N];
intl
[N],r[N],fa[N];inta[N],cnt;intidx=1;//编号
爱吃卤鸭腿
·
2024-01-08 05:49
算法
c++
数据结构
【数据结构】线性表
//2.C/C++算法voidReverse(int*arr,
intl
,intr){while(l=0,a[a[i]]=-1进行数字i的首次计数,同时a[i]=tmp,将计数位上的数字移动到a[i]位置
joker D888
·
2024-01-07 20:26
数据结构
数据结构
408考研
C/CPP
第 120 场 LeetCode 双周赛题解
统计移除递增子数组的数目I同t3…当然直接枚举更简单classSolution{public:longlongincremovableSubarrayCount(vector&nums){intn=nums.size();
intl
xhchen2023
·
2024-01-07 15:28
LeetCode
leetcode
算法
二分
dfs
排序
问题 C: 求逆序对
注意:n#defineintlonglong//使用长整型usingnamespacestd;//定义一个函数merge,用于合并两个子数组并计算逆序对intmerge(vector&a,
intl
,intmid
我们会夺回属于zwu的一切
·
2024-01-07 06:22
#
分治算法
c语言
算法
24. 剩下的树
题目描述有一个长度为整数L(1#includeintmain(){for(
intL
,M;~scanf("%d%d",&L,&M);){intcount=0;//记录1的个数inta,b;//移走树的范围
IceFrozen
·
2024-01-07 04:41
C++ 离散化思想 及两个主要的注意点
//将所有值排序alls.erase(unique(alls.begin(),alls.end()),alls.end());//去掉重复元素intfind(intx)//找到第一个大于等于x的位置{
intl
伏城无嗔
·
2024-01-06 20:45
字符串
力扣
算法笔记
c++
算法
数据结构
c++可视化 横向打印二叉树(连线、规整)
直接放结果:一、二叉树实现#include#includeusingnamespacestd;#defineMAX_SIZE1000structnode{intkey;
intl
,r;};nodetree
岚花落_
·
2024-01-06 19:53
功能性项目
c++
洛谷:校门外的树(P1047)C语言
3.源码#includeintmain(){
intl
,m
王彬泽
·
2024-01-06 10:50
洛谷
c语言
算法
网络编程Socket之TCP之close/shutdown详解
当套接字的引用计数为0的时候才会引发TCP的四分组连接终止序列;shutdown:不用管套接字的引用计数就激发TCP的正常连接终止序列;这里由一个SO_LINGER套接字选项structlinger{
intl
_onoff
小T是我
·
2024-01-05 21:05
网络编程Socket之TCP
网络编程Socket之TCP
网络编程
socket
TCP
close
shutdown
c++ 头歌实训 第四关 日历打印
//参数:year-年,month-月//返回值:无voidprintMonth(intyear,intmonth);//leapYear:判断闰年//参数:y-年//返回值:1-是闰年,0-不是闰年
intl
YanXi_Basketball
·
2024-01-05 08:55
头歌c++程序设计
c++
力扣第一百道题,记录一下——x 的平方根
publicintmySqrt(intx){
intl
=0,r=x,ans=0
心理患者
·
2024-01-05 07:52
leetcode
算法
数据结构
算法基础之最大不相交区间数量
贪心按照右端点排序若下一个区间的左端点大于上一个取得区间的右端点则res++和区间选点一模一样#include#includeusingnamespacestd;constintN=100010;structRange{
intl
阳光男孩01
·
2024-01-04 17:59
算法
c++
数据结构
开发语言
算法基础之区间选点
贪心每次只看当前的最优解将所有区间按右端点排序从小到大遍历所有区间为了覆盖更多区间取右端点作为选点若两区间互相没有交集则再取点#include#includeusingnamespacestd;constintN=100010;intn;structRange{
intl
阳光男孩01
·
2024-01-04 17:29
算法
数据结构
c++
算法基础之区间分组
贪心若所有组中右端点最大值都比当前遍历的区间的左端点大则需要开新组为了让组数最多根据左端点排序#include#include#includeusingnamespacestd;constintN=100010;structRange{
intl
阳光男孩01
·
2024-01-04 17:27
算法
深度优先
图论
数据结构
c++
C++字符数组(4)
123输出复制3#include#include#includeusingnamespacestd;intmain(){chara[110];cin.getline(a,110);
intl
=strlen
BanyeBirth
·
2024-01-04 11:25
数据结构
开发语言
(双指针 子数组)剑指 Offer 48. 最长不含重复字符的子字符串
最长不含重复字符的子字符串classSolution{public:intlengthOfLongestSubstring(strings){intcnt[300];memset(cnt,0,sizeofcnt);
intl
来到了没有知识的荒原
·
2024-01-04 11:23
AcWing 167. 木棒 题解(搜索—DFS剪枝)
另外排序也算剪枝的一部分#includeusingnamespacestd;constintN=70;intn;intsum;intlen;intw[N];boolst[N];booldfs(intt,
intl
QingQingDE23
·
2024-01-03 22:25
搜索
深度优先
剪枝
算法
二分查找(模板) & &C++STL(lower_bound)
intbin_search(intp[],intn,intkey){
intl
=0,r=n-1,m;//l起点r终点while(lkey){r=m-1;}elseif(p[m]>n;for(inti=0;
book0121
·
2024-01-03 19:37
算法刷题笔记
算法
数据结构
c++
【LeetCode-剑指offer】--16.无重复字符的最长子串
:滑动窗口classSolution{publicintlengthOfLongestSubstring(Strings){intn=s.length();Setset=newHashSet<>();
intl
小d<>
·
2024-01-03 18:36
#
剑指offer
leetcode
算法
leetcode算法题--盛最多水的容器
container-with-most-water/双指针classSolution{public:intmaxArea(vector&height){intn=height.size();intres=0;
intl
bob62856
·
2024-01-03 17:01
Algorithm
leetcode
算法
容器
LeetCode第32题:最长有效括号(困难)
classSolution{publicintlongestValidParentheses(Strings){intlen=s.length();
intL
=0;intR=L+1;intcount=0;
new_whiter
·
2024-01-03 08:34
学生
剑指 Offer II 085. 生成匹配的括号
publicListgenerateParenthesis(intn){dfs(n,"",0,0);returnlist;}Listlist=newLinkedList();publicvoiddfs(intn,Strings,
intl
学姐抱抱.
·
2024-01-02 07:26
算法
深度优先
leetcode
算法
windows 10 英文版显示中文乱码
\>
intl
.cpl,1or\>controlintl.cpl,,1or\>rundll32shell32.dll,Control_RunDLLintl.cpl,,1选择regionandlanguagesettings
mr. zing
·
2024-01-02 04:16
windows
二分查找 经典例题
//返回都是r//区间划分为[l,mid]和[mid+1,r],选择此模板intbsec1(
intl
,intr){while(l&nums){/*模板1*/
intl
=0,r=nums.size()-1;
大法师安东尼ds
·
2024-01-01 21:51
算法与数据结构
算法
数据结构
西电期末1007.字符串插入
代码实现#include//万能头文件#defineMAX21//宏定义数组最大值intmain(){chara[MAX];//主字符串charb[MAX];//子字符串scanf("%s%s",a,b);
intl
pboaths
·
2024-01-01 19:57
算法
ABC202(A-C)
includeusingnamespacestd;intmain(){inta,b,c;cin>>a>>b>>c;coutusingnamespacestd;intmain(){strings;cin>>s;
intl
pboaths
·
2024-01-01 19:57
c语言
算法
c++
C++自制游戏《袁坤》1.2版本发布!
那么下面就是源代码:#include#include#include#include#include#include#includeusingnamespacestd;stringa;intmain(){
intL
猿神派蒙
·
2024-01-01 14:06
游戏
c++
flutter将当前时间转成GMT格式
flutter将当前时间转成GMT格式import'package:
intl
/
intl
.dart';Stringdate=DateFormat("EEE,ddMMMyyyyHH:mm:ss'GMT'")
DyuanH
·
2024-01-01 07:12
flutter
前端
javascript
快速排序java版
1,5,2,6,8,9,10,3,5,13,18,0,7,43,26,47};sort(a,0,a.length-1);print(a);}publicstaticvoidsort(intarr[],intlow,inthigh){
intl
YuYunTan
·
2024-01-01 07:45
Java
Java程序设计
快速排序
java
实现
eclipse
【数据结构】八、查找
2.1顺序查找在线性表、链表、树中依次查找2.2折半查找(二分查找)在有序的线性表中,每次都与中间位置元素进行比较,根据大小向左或向右缩小查找区域#include#include//voidsearch(
intl
42fourtytoo
·
2023-12-31 10:58
数据结构
数据结构
算法
考研
c++
c语言
笔记
经验分享
ref无法获取到组件实例引用
最近在使用react-
intl
国际化中,发现使用injectIntl,ref无法获取到组件实例了,最后搜索了以下,是因为:在React中,我们都会用到HOC(高阶组件),它会返回一个新的高阶组件,若用ref
曾經丶記憶的風景
·
2023-12-31 08:48
剑指offer每日一练
拼接字符串:1.x+y>y+x可得:x大于y2.x+y&nums){vectorstr;for(inti=0;i&str,
intl
,intr
景晨.
·
2023-12-31 02:19
算法
leetcode
数据结构
leetcode 912.排序数组 (medium)(优质解法)
随机选择基准元素publicint[]sortArray(int[]nums){qSort(nums,0,nums.length-1);returnnums;}publicvoidqSort(int[]nums,
intL
小林想被监督学习
·
2023-12-31 00:09
leetcode
leetcode
算法
职场和发展
leetcode 215. 数组中的第K个最大元素(medium)(小林出品必属精品)
(int[]nums,intk){returnfind(nums,0,nums.length-1,k);}//查找nums数组中,l~r区间第k大的元素publicintfind(int[]nums,
intl
小林想被监督学习
·
2023-12-31 00:09
leetcode
leetcode
算法
职场和发展
C语言学习笔记之实验报告(二)
#include#includeintmain(){chara[100];char*p=a;gets(p);
intl
=strlen(p);for(inti=0;i='A'&&*(a+i)='a'&&*(
胡剑威(James)
·
2023-12-30 00:15
c语言
学习
笔记
7.2选择排序、堆排序
=i)swap(A[i],A[min]);}}二、堆排序的构建本质特点是一棵完全二叉树,分为大根堆与小根队1.建立大根堆//1.建立大根堆voidBuildMaxHeap(intA[],
intl
问题存档
·
2023-12-29 19:33
Alogrithm
java
算法
数据结构
Leetcode7-库存管理(158)
示例1:输入:stock=[6,1,3,1,1,1]输出:1限制:1&stock){
intl
=stock.size()/2;unordered_mapstockNum;for(autos:stock){
我宿孤栈
·
2023-12-29 16:04
#
LeetCode
算法
数据结构
c++
USACO08FEB Hotel G
,但转念一想,连续的空房可以横跨左孩子管辖的区间和右孩子管辖的区间,所以还得维护从区间开头开始的最长连续空房,和从区间结尾开始的最长连续空房,更新节点信息的代码:voidpush_up(intcur,
intl
欧耶2023
·
2023-12-29 15:26
算法
数据结构
算法基础day1
归并排序模版#includeusingnamespacestd;intn;constintN=1e6+10;intq[N],tmp[N];voidmerge_sort(
intl
,intr,intq[])
m0_59519985
·
2023-12-29 13:09
算法基础
算法
c++
算法基础day2
){scanf("%d%d",&n,&m);for(inti=1;iusingnamespacestd;constintN=100010;intn,m;inta[N],b[N];voidinsert(
intl
m0_59519985
·
2023-12-29 13:09
算法基础
算法
关于React国际化方案 2019-08-09
首先想到的就是,应该要做国际化处理了,之前也看过关于国际化的一些方案,于是翻阅资料后,就利用react-
intl
集成了一个简单的国际化方案。
讨厌西红柿
·
2023-12-28 19:12
2019-03-16 查找最接近的元素
includeusingnamespacestd;constintmaxn=100000+10;inta[maxn],b[10001];intupper_bound(int*A,intn,intx){
intL
桐桑入梦
·
2023-12-26 10:48
河南工程学院第五届ACM大学生程序设计竞赛(部分题解)
河南工程学院第五届ACM大学生程序设计竞赛(部分题解)问题A:敏感的小明同学小明是一个对数字非常敏感的人,当他看到某个特定的数字p(1usingnamespacestd;
intl
,r,p;intf(intx
醉茶、
·
2023-12-26 06:21
c++
C语言编程练习(1):哥德巴赫猜想/猴子吃桃/马鞍数
for(i=2;iintmain(){intn;n=1;for(inti=1;ia[i][j]){h[i]=a[i][j];//列的最大值if(l[j]inta[100][100];inth[100];
intl
Emptyqk
·
2023-12-25 23:20
c语言
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
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
其他