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
namespace
C++ 基础学习
提示并输入一个字符串,统计该字符串中字母个数、数字个数、空格个数、其他字符的个数#includeusing
namespace
std;intmain(){cout='0'&&str[i]='a'&&str
wuziNO_1
·
2024-08-28 17:49
c++
学习
算法
Codeforces Round 963 (Div. 2)
代码#includeusing
namespace
std;#defineIO
lskkkkkkkkkkkk
·
2024-08-28 17:15
题解
dp
动态规划
思维
模拟
数论
C++ 进阶 - const 的用法及尽量使用const的好处
const关键字在C++中的用法多种多样,可以概括如下:它可以在classes外部修饰global或
namespace
作用域中的常量或者修饰文件、函数或者块作用域中被声明为static的对象。
路人暴脾气
·
2024-08-28 17:14
C/C++进阶
C++学习之路
C++
c++const用法
使用const的好处
C++ const用法总结(菜鸟笔记)
一、const修饰普通类型的变量constinta=7;intb=a;//正确a=8;//错误,不能改变#includeusing
namespace
std;intmain(void){constinta
阿呦的烦恼
·
2024-08-28 17:43
c++
开发语言
数据结构:顺序表和链表的实现和应用
采用递增有序的链表表示集合,求解两个集合的交集(1)定义链表的存储结构;(2)实现存储递增有序集合的链表的建立、求交集运算;3.比较顺序表和链表的优缺点和适用场合实验代码:1.顺序表#include#includeusing
namespace
std
shenhaibb_
·
2024-08-28 13:54
其他
数据结构
顺序表
单链表
【Qt】QTcpServer/QTcpSocket通信
客户端1.pro文件QT+=network2.服务器h文件#ifndefMAINWINDOW_H#defineMAINWINDOW_H#include#include#includeQT_BEGIN_
NAMESPACE
namespace
Ui
叫我东方小巴黎
·
2024-08-28 13:21
Qt基础
qt
模拟实现string
#pragmaonce#include
namespace
QiBL{classstring{public:typedefchar*iterator;//将iterator写在类里面,这样每一个类都有自己的
Hungry_11
·
2024-08-28 10:34
C++程序设计
c++
笔记
染色法(判断是否为二分图)
二分图当且仅当图中不含奇数环(边数为奇数条)//二分图-染色法#include#includeusing
namespace
std;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#includeusing
namespace
std
百年孤独_
·
2024-08-28 04:52
c++
c语言
算法
试除法判定质数
数据范围1≤n≤1001≤n≤100,1≤ai≤231−11≤ai≤231−1输入样例:226输出样例:YesNo#includeusing
namespace
std;constintN
black_blank
·
2024-08-28 03:51
acwing练习
算法
数据结构
NOI2024(2024“钉耙编程”中国大学生算法设计超级联赛(10))
#include#defineendl'\n'usingll=longlong;typedefunsignedlonglongull;using
namespace
std;voidGordenGhost(
GordenGhost
·
2024-08-27 21:38
算法
c++
钉耙编程
数学
坐牢第三十天(c++)
1.作业:提示并输入一个字符串,统计该字符串中字母个数、数字个数、空格个数、其他字符的个数#include#include#includeusing
namespace
std;intmain(intargc
早川loeh
·
2024-08-27 20:00
c++
linux
qt
2024寒假学习c++进入封装与继承
#include#includeusing
namespace
std;constdoublePI=3.14;初识封装类与对象//第一个////classcircle{//public://公共的访问权限/
张宇超666
·
2024-08-27 19:58
c++
学习
算法
信息学奥赛c++ 初学保姆级教程
例1.1#includeusing
namespace
std;intmain(){cout叫做头文件c++里使用输出输入都要用这个头文件2.using
namespace
std可以先理解为不可以省的东西3.
YANLIAM
·
2024-08-27 17:16
c++
蓝桥杯
开发语言
C++学习,String类
示例:#include#includeusing
namespace
std;intmain(){stringstr1="Hello";stringstr2="World";stringstr3;intlen
五味香
·
2024-08-27 12:38
c++
学习
算法
c语言
linux
服务器
开发语言
C++STL之map的使用详解
简介:map底层实现为红黑树,增删查的时间复杂度:O(logn),key是有序的,默认升序一、初始化#include#include#includeusing
namespace
std;intmain()
小菜鸡的蜕变之路
·
2024-08-27 04:24
STL读书笔记
c++
stl
算法
C++设计模式4:发布-订阅模式
#include#includeusing
namespace
std;classObserver{publ
咩咩大主教
·
2024-08-27 04:49
设计模式
c++
设计模式
开发语言
c语言
发布订阅模式
观察者模式
监管者模式
C++设计模式5:装饰器模式
#includeusing
namespace
std;classCar{public:Car(){}~Car(){}virtualvoidshow()=0;};classAudi:publicCar
咩咩大主教
·
2024-08-27 04:49
设计模式
c++
设计模式
装饰器模式
c语言
开发语言
结构型模式
C++创建不定长数组并求连续子数组最大和/排序
在C++中使用Vector类模板生成不定长数组是非常方便的,配合push_back使用#include#include#include"algorithm"using
namespace
std;intMaxSubSum
FantasyJXF
·
2024-08-27 01:05
C++
C++
笔试
算法
排序
最大子段和
代码随想录第21天:669. 修剪二叉搜索树、108.将有序数组转换为二叉搜索树、538.把二叉搜索树转换为累加树
669.修剪二叉搜索树//669.修剪二叉搜索树#include#includeusing
namespace
std;structTreeNode{intval;TreeNode*left;TreeNode
淦,又报错了
·
2024-08-26 18:07
算法
数据结构
D. Water Tree
模板题#include#includeusing
namespace
std;constintN=5e5+9;intn;//树剖//1.转成线性部分vectore[N];voidadd(intu,intv)
Lanthanmum
·
2024-08-26 14:41
算法
数据结构
const & constexpr
const主要在于:只读constexpr顾名思义常量表达式:常量1)只读|常量#include#includeusing
namespace
std;voiddis_1(constintx){arraymyarr
DongDongBaJiaYou
·
2024-08-26 13:40
C++
c++
UGUI空白可点击组件,减少重绘
overDraw,直接清空mesh,不绘制即可避免#ifUNITY_EDITORusingUnityEditor;#endifusingUnityEngine;usingUnityEngine.UI;
namespace
UnityGameFramework
积微阁
·
2024-08-26 13:07
Unity
unity
P10984 残缺的数字 题解
【代码】#includeusing
namespace
std;strings[20]={{"1111110"},{"0110000"},{"1101101"},{"1111001"},{"0110011"
隐曜日星
·
2024-08-26 10:44
题解
算法
C++编程-高精度算法2(上期标准程序)
标准程序第一题#include#includeusing
namespace
std;inta[100000],n,i,y,xy[100000];intmain(){cin>>n;a[0]=1;a[1]=1
C-DHEnry
·
2024-08-26 10:13
信息学奥赛一本通
算法
编程题目/题解/算法
c++
算法
开发语言
【C#】【EXCEL】Bumblebee/Classes/ExEnums.cs
Bumblebee/Classes/ExEnums.csFlowdiagramDescriptionCodeBumblebee/Classes/ExEnums.csFlowdiagramBumblebee
Namespace
Bumblebee
hmywillstronger
·
2024-08-26 06:52
c#
excel
python
全排列-递归
代码#include#includeusing
namespace
std;voidswap(char*p,char*q){chartemp=*p;*p=*q;*q=temp;}v
qq_187352634
·
2024-08-26 05:19
C++
算法
c++
全排列-递归
[Algorithm][综合训练][比那名居的桃子][chika和蜜柑][礼物的最大价值]详细讲解
礼物的最大价值1.题目链接2.算法原理详解&&代码实现1.比那名居的桃子1.题目链接比那名居的桃子2.算法原理详解&&代码实现自己的版本:暴力解法-->超时37.5%#include#includeusing
namespace
std
DieSnowK
·
2024-08-26 05:48
[OJ]
#
[综合训练]
算法
Algorithm
综合训练
比那名居的桃子
chika和蜜柑
礼物的最大价值
详细讲解
c++中的iomanip
c++中的iomanip进制控制输出格式控制进制控制头文件includehexdecoctinta=10,b=20,c=0xfff;cout#includeusing
namespace
std;intmain
qq_187352634
·
2024-08-26 05:45
C++
c++
c++中的iomanip
栈操作c++
输入格式第一行,一个整数(using
namespace
std;stacks;intmain(){intn;intx,op;
2013Li Ziqi
·
2024-08-25 22:34
算法
数据结构
Codeforces Round 938 (Div. 3)A-C,E-H
题目链接A.YogurtSale贪心的选两个物品价格少的,若总个数为奇数再加是单个价格代码:#include#definelllonglongusing
namespace
std;voidsolve(){
青衫酒145
·
2024-08-25 21:25
c语言
算法
c++
1028 List Sorting (25 分)
代码#includeusing
namespace
std;intn,c;structNODE{intno;stringname;intscore;};intcmp1(NODEa,NODEb){if(c==
小鱼朵~
·
2024-08-25 14:16
#
排序相关
排序
c++ dfs部落卫队题解
3代码:#include#include#includeusing
namespace
std;intn,m;intcd[105][105]={0},rs2[105]={0},rs3[105]={0},max1
清鲨
·
2024-08-25 12:06
c++2道经典DFS题目题解
输入一行两个自然数n、r(1using
namespace
std;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
ASP.NET使用FileUpLoad控件实现图片上传并显示
usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.IO;
namespace
ex
pcdd
·
2024-08-25 08:06
.NET
asp.net
用OPENCV C++ 代码实现 检测图片是否有马赛克
下面是使用OpenCV对图像进行均值滤波的示例代码:#include#includeusing
namespace
cv;using
namespace
std;intmain(intar
南风寺山
·
2024-08-25 04:10
opencv
c++
计算机视觉
人工智能
图像处理
KTCP 通信
本库旨在简化c++服务端与客户端之间的tcp通信流程,简化了代码并实现了跨平台使用,即实现了不同平台一套代码服务端代码示例:#include"TCP.h"#includeusing
namespace
std
ktboEmax
·
2024-08-25 03:38
KTCP
c++
tcp/ip
服务器
信息与通信
opencv实现图像腐蚀(C++)
#include#include#includeusing
namespace
cv;using
namespace
std;intmain(){MatsrcImage=imread("C:\\Users\\Desktop
jiakii2106
·
2024-08-25 03:07
opencv学习代码
CCF-CSP 202303-1 田地丈量 100分
原题链接:CCF-CSP202303-1田地丈量#includeusing
namespace
std;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]米(1using
namespace
std;intmain(){intN,M;cin>>N>>M;inth[N];for(inti=0;i>h[i];}intleft
是真心kyoto
·
2024-08-25 02:30
算法
数据结构
牛客小白月赛99
intx;vectordp(n);dp[0]=0;dp[1]=1;mapm;for(inti=2;i#defineendl'\n'#definepiipair#defineintlonglongusing
namespace
std
segment_tree1
·
2024-08-25 01:56
算法
算法
040:统计数字字符个数
样例输入PekingUniversityissetupat1898.样例输出4代码#include#includeusing
namespace
std;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()//{//using
namespace
std
树不懒
·
2024-08-24 23:44
学习历程
C++primer
plus
C++ Primer Plus 第六版 第四章练习答案
#include#includeusing
namespace
std;//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#includeusing
namespace
std;classSolution{public:intSum_Solution(intn){/
小wanga
·
2024-08-24 23:41
C++
c++
【数据结构】BF和KMP算法
BF算法#includeusing
namespace
std;//#include//字符串处理#defineMAXSIZE255//串的定长顺序存储结构typedefstruct{charch[MAXSIZE
小南知更鸟
·
2024-08-24 19:49
数据结构
算法
数据结构
c++
C#基础:父类 = new 子类() 的效果和作用
代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;
namespace
StudentClassExample{publicclassSon
我是苏苏
·
2024-08-24 19:48
C#基础
servlet
没用的C++程序
include#include#include#include#include#defineS(i)Sleep(i)#defineclssystem("cls");#defineeielseifusing
namespace
std
WHSTU666
·
2024-08-24 17:39
c++
无限挖掘
1:0)using
namespace
std;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,其中1using
namespace
std;intmain(){
yuhaoteng666
·
2024-08-24 14:51
一本通答案
c++
上一页
4
5
6
7
8
9
10
11
下一页
按字母分类:
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
其他