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
Spaces
Codeforces Round 963 (Div. 2)
代码#includeusingname
spaces
td;#defineIO
lskkkkkkkkkkkk
·
2024-08-28 17:15
题解
dp
动态规划
思维
模拟
数论
C++ const用法总结(菜鸟笔记)
一、const修饰普通类型的变量constinta=7;intb=a;//正确a=8;//错误,不能改变#includeusingname
spaces
td;intmain(void){constinta
阿呦的烦恼
·
2024-08-28 17:43
c++
开发语言
数据结构:顺序表和链表的实现和应用
求解两个集合的交集(1)定义链表的存储结构;(2)实现存储递增有序集合的链表的建立、求交集运算;3.比较顺序表和链表的优缺点和适用场合实验代码:1.顺序表#include#includeusingname
spaces
td
shenhaibb_
·
2024-08-28 13:54
其他
数据结构
顺序表
单链表
染色法(判断是否为二分图)
二分图当且仅当图中不含奇数环(边数为奇数条)//二分图-染色法#include#includeusingname
spaces
td;constintN=100010,M=200010;intn,m;inth
我想进大厂
·
2024-08-28 04:54
深度优先
算法
图论
C/C++ 初级球球大作战练手
live.csdn.net/v/385490游戏初始化#include#include#include#include#include#include#include#include#includeusingname
spaces
td
百年孤独_
·
2024-08-28 04:52
c++
c语言
算法
试除法判定质数
数据范围1≤n≤1001≤n≤100,1≤ai≤231−11≤ai≤231−1输入样例:226输出样例:YesNo#includeusingname
spaces
td;constintN
black_blank
·
2024-08-28 03:51
acwing练习
算法
数据结构
NOI2024(2024“钉耙编程”中国大学生算法设计超级联赛(10))
#include#defineendl'\n'usingll=longlong;typedefunsignedlonglongull;usingname
spaces
td;voidGordenGhost(
GordenGhost
·
2024-08-27 21:38
算法
c++
钉耙编程
数学
坐牢第三十天(c++)
1.作业:提示并输入一个字符串,统计该字符串中字母个数、数字个数、空格个数、其他字符的个数#include#include#includeusingname
spaces
td;intmain(intargc
早川loeh
·
2024-08-27 20:00
c++
linux
qt
2024寒假学习c++进入封装与继承
#include#includeusingname
spaces
td;constdoublePI=3.14;初识封装类与对象//第一个////classcircle{//public://公共的访问权限/
张宇超666
·
2024-08-27 19:58
c++
学习
算法
信息学奥赛c++ 初学保姆级教程
例1.1#includeusingname
spaces
td;intmain(){cout叫做头文件c++里使用输出输入都要用这个头文件2.usingname
spaces
td可以先理解为不可以省的东西3.
YANLIAM
·
2024-08-27 17:16
c++
蓝桥杯
开发语言
C++学习,String类
示例:#include#includeusingname
spaces
td;intmain(){stringstr1="Hello";stringstr2="World";stringstr3;intlen
五味香
·
2024-08-27 12:38
c++
学习
算法
c语言
linux
服务器
开发语言
C++STL之map的使用详解
简介:map底层实现为红黑树,增删查的时间复杂度:O(logn),key是有序的,默认升序一、初始化#include#include#includeusingname
spaces
td;intmain()
小菜鸡的蜕变之路
·
2024-08-27 04:24
STL读书笔记
c++
stl
算法
C++设计模式4:发布-订阅模式
#include#includeusingname
spaces
td;classObserver{publ
咩咩大主教
·
2024-08-27 04:49
设计模式
c++
设计模式
开发语言
c语言
发布订阅模式
观察者模式
监管者模式
C++设计模式5:装饰器模式
#includeusingname
spaces
td;classCar{public:Car(){}~Car(){}virtualvoidshow()=0;};classAudi:publicCar
咩咩大主教
·
2024-08-27 04:49
设计模式
c++
设计模式
装饰器模式
c语言
开发语言
结构型模式
C++创建不定长数组并求连续子数组最大和/排序
在C++中使用Vector类模板生成不定长数组是非常方便的,配合push_back使用#include#include#include"algorithm"usingname
spaces
td;intMaxSubSum
FantasyJXF
·
2024-08-27 01:05
C++
C++
笔试
算法
排序
最大子段和
代码随想录第21天:669. 修剪二叉搜索树、108.将有序数组转换为二叉搜索树、538.把二叉搜索树转换为累加树
669.修剪二叉搜索树//669.修剪二叉搜索树#include#includeusingname
spaces
td;structTreeNode{intval;TreeNode*left;TreeNode
淦,又报错了
·
2024-08-26 18:07
算法
数据结构
D. Water Tree
模板题#include#includeusingname
spaces
td;constintN=5e5+9;intn;//树剖//1.转成线性部分vectore[N];voidadd(intu,intv)
Lanthanmum
·
2024-08-26 14:41
算法
数据结构
const & constexpr
const主要在于:只读constexpr顾名思义常量表达式:常量1)只读|常量#include#includeusingname
spaces
td;voiddis_1(constintx){arraymyarr
DongDongBaJiaYou
·
2024-08-26 13:40
C++
c++
P10984 残缺的数字 题解
【代码】#includeusingname
spaces
td;strings[20]={{"1111110"},{"0110000"},{"1101101"},{"1111001"},{"0110011"
隐曜日星
·
2024-08-26 10:44
题解
算法
C++编程-高精度算法2(上期标准程序)
标准程序第一题#include#includeusingname
spaces
td;inta[100000],n,i,y,xy[100000];intmain(){cin>>n;a[0]=1;a[1]=1
C-DHEnry
·
2024-08-26 10:13
信息学奥赛一本通
算法
编程题目/题解/算法
c++
算法
开发语言
全排列-递归
代码#include#includeusingname
spaces
td;voidswap(char*p,char*q){chartemp=*p;*p=*q;*q=temp;}v
qq_187352634
·
2024-08-26 05:19
C++
算法
c++
全排列-递归
[Algorithm][综合训练][比那名居的桃子][chika和蜜柑][礼物的最大价值]详细讲解
.题目链接2.算法原理详解&&代码实现1.比那名居的桃子1.题目链接比那名居的桃子2.算法原理详解&&代码实现自己的版本:暴力解法-->超时37.5%#include#includeusingname
spaces
td
DieSnowK
·
2024-08-26 05:48
[OJ]
#
[综合训练]
算法
Algorithm
综合训练
比那名居的桃子
chika和蜜柑
礼物的最大价值
详细讲解
c++中的iomanip
c++中的iomanip进制控制输出格式控制进制控制头文件includehexdecoctinta=10,b=20,c=0xfff;cout#includeusingname
spaces
td;intmain
qq_187352634
·
2024-08-26 05:45
C++
c++
c++中的iomanip
栈操作c++
输入格式第一行,一个整数(usingname
spaces
td;stacks;intmain(){intn;intx,op;
2013Li Ziqi
·
2024-08-25 22:34
算法
数据结构
Codeforces Round 938 (Div. 3)A-C,E-H
题目链接A.YogurtSale贪心的选两个物品价格少的,若总个数为奇数再加是单个价格代码:#include#definelllonglongusingname
spaces
td;voidsolve(){
青衫酒145
·
2024-08-25 21:25
c语言
算法
c++
1028 List Sorting (25 分)
代码#includeusingname
spaces
td;intn,c;structNODE{intno;stringname;intscore;};intcmp1(NODEa,NODEb){if(c==
小鱼朵~
·
2024-08-25 14:16
#
排序相关
排序
c++ dfs部落卫队题解
3代码:#include#include#includeusingname
spaces
td;intn,m;intcd[105][105]={0},rs2[105]={0},rs3[105]={0},max1
清鲨
·
2024-08-25 12:06
c++2道经典DFS题目题解
输入一行两个自然数n、r(1usingname
spaces
td;inta[25];intn,r;voiddfs(intk){if(k>r){for(inti=1;i>n>>r;dfs(1);return
清梦123456
·
2024-08-25 12:34
算法
深度优先
c++
算法
dfs
用OPENCV C++ 代码实现 检测图片是否有马赛克
下面是使用OpenCV对图像进行均值滤波的示例代码:#include#includeusingnamespacecv;usingname
spaces
td;intmain(intar
南风寺山
·
2024-08-25 04:10
opencv
c++
计算机视觉
人工智能
图像处理
KTCP 通信
本库旨在简化c++服务端与客户端之间的tcp通信流程,简化了代码并实现了跨平台使用,即实现了不同平台一套代码服务端代码示例:#include"TCP.h"#includeusingname
spaces
td
ktboEmax
·
2024-08-25 03:38
KTCP
c++
tcp/ip
服务器
信息与通信
opencv实现图像腐蚀(C++)
#include#include#includeusingnamespacecv;usingname
spaces
td;intmain(){MatsrcImage=imread("C:\\Users\\Desktop
jiakii2106
·
2024-08-25 03:07
opencv学习代码
CCF-CSP 202303-1 田地丈量 100分
原题链接:CCF-CSP202303-1田地丈量#includeusingname
spaces
td;intmain(){intn,a,b;cin>>n>>a>>b;longlongsum=0;while
自信的小螺丝钉
·
2024-08-25 03:03
CCF-CSP
C++
csp
新初二暑假集训练习—二分算法(8.22)7. 伐木工小明
题目描述有N棵树,第i棵树的高度为h[i]米(1usingname
spaces
td;intmain(){intN,M;cin>>N>>M;inth[N];for(inti=0;i>h[i];}intleft
是真心kyoto
·
2024-08-25 02:30
算法
数据结构
牛客小白月赛99
vectordp(n);dp[0]=0;dp[1]=1;mapm;for(inti=2;i#defineendl'\n'#definepiipair#defineintlonglongusingname
spaces
td
segment_tree1
·
2024-08-25 01:56
算法
算法
040:统计数字字符个数
样例输入PekingUniversityissetupat1898.样例输出4代码#include#includeusingname
spaces
td;intmain(){charline[256];in
Lyn谷神不死
·
2024-08-24 23:02
C++primer plus 第四章编程练习
Ctrl+shift+C和Ctrl+shift+X快捷键如有任何错误或疑问,欢迎留言//4.1//#include//#include//#include//intmain()//{//usingname
spaces
td
树不懒
·
2024-08-24 23:44
学习历程
C++primer
plus
C++ Primer Plus 第六版 第四章练习答案
#include#includeusingname
spaces
td;//practice4.1voidp4_1(void){stringfirst;char*last=newchar;intage;chargrade
Raywit
·
2024-08-24 23:12
#
C++_Prime_Plus
【C++】匿名对象知识点
#define_CRT_SECURE_NO_WARNINGS1#includeusingname
spaces
td;classSolution{public:intSum_Solution(intn){/
小wanga
·
2024-08-24 23:41
C++
c++
【ORACLE】Oracle 表空间查询
以下是一些常用的查询表空间的SQL语句:查看所有表空间的名称及大小:SELECTt.tablespace_name,round(SUM(bytes/(1024*1024)),0)ts_sizeFROMdba_table
spaces
t
小雨嗒嗒
·
2024-08-24 19:21
数据库
oracle
数据库
【数据结构】BF和KMP算法
BF算法#includeusingname
spaces
td;//#include//字符串处理#defineMAXSIZE255//串的定长顺序存储结构typedefstruct{charch[MAXSIZE
小南知更鸟
·
2024-08-24 19:49
数据结构
算法
数据结构
c++
C#基础:父类 = new 子类() 的效果和作用
代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;name
spaceS
tudentClassExample{publicclassSon
我是苏苏
·
2024-08-24 19:48
C#基础
servlet
没用的C++程序
include#include#include#include#include#defineS(i)Sleep(i)#defineclssystem("cls");#defineeielseifusingname
spaces
td
WHSTU666
·
2024-08-24 17:39
c++
无限挖掘
1:0)usingname
spaces
td;intm[10001][21];structnode{intxx,yy,Zhong,rr,mr;}B[100001];intK,X,Y,tX,tY,tY2,tT
张洋(我还是个小学生)
·
2024-08-24 15:27
c++小游戏
c++
1090:含k个3的数
1090:含k个3的数时间限制:1000ms内存限制:65536KB提交数:113534通过数:58421【题目描述】输入两个正整数m和k,其中1usingname
spaces
td;intmain(){
yuhaoteng666
·
2024-08-24 14:51
一本通答案
c++
STL案例-评委打分
#includeusingname
spaces
td;#include#include#includeclassPerson{public:Person(stringname,intscore){this
程序猿练习生
·
2024-08-24 11:05
c++
c++
算法
开发语言
走迷宫c++代码初二练习
题目描述给定一个N*M方格的迷宫(1usingname
spaces
td;typedeflonglongll;boolvis[6][6],s[6][6];intn,m,sx,sy,fx,fy,t;intnum
是真心kyoto
·
2024-08-24 08:41
c++
c++
算法
开发语言
P3369 【模板】普通平衡树
[题目通道](【模板】普通平衡树-洛谷)#includeusingname
spaces
td;constintmaxn=1e7;#defineintlonglongstructnode{intl;intr
浚浚的二师兄
·
2024-08-24 06:56
算法
c++
数据结构
jenkins workpase优化清理
概述由于jenkinspipline脚本是通用的,可以发布上百个java项目,但是这些微服务执行job时,共用了一个Work
spaces
路径。
shykevin
·
2024-08-24 05:47
jenkins
servlet
运维
Kubernetes 清理资源常用的 Kubernetes 清理命
清理特定状态的Pod:清理Evicted状态的Pod:kubectlgetpods--all-name
spaces
-owide|grepEvicted|awk'{print$1,$2}'|xargs-L1kubectldeletepod-n
学海无涯码代码
·
2024-08-24 03:09
kubernetes
容器
云原生
最长回文子序列
提示:区间dp#include#includeusingname
spaces
td;intf[2005][2005];chars[2005];intmain(){memset(f,0x3f,sizeoff
玄湖白虎
·
2024-08-24 03:08
算法
YACS
上一页
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
其他