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
stack的用法
函数来访问栈顶元素常用函数1.push(x):将x入队2.top():获得队首元素3.empty():判断是否为空4.size():返回队内元素个数#include#include//引用stack头文件using
namespace
std
代码续发
·
2024-02-20 04:00
小白进阶
算法
pair的用法
/通过函数初始化pairp2("qwer",4);//定义并初始化访问通过first与second分别访问pair中的元素cout#include//引用utility头文件#includeusing
namespace
std
代码续发
·
2024-02-20 04:00
小白进阶
算法
c++
数据结构
优先队列的用法
介绍英文名-priority_queue队首元素为当前优先级最高的访问只能通过top()函数来访问队首元素#include#include//调用queue头文件using
namespace
std;intmain
代码续发
·
2024-02-20 04:59
小白进阶
算法
ABC338 A-E题解
挨个挨个判断就行了ACCode:#include#include#include#include#include#include#include#include#include#includeusing
namespace
std
smart_stupid
·
2024-02-20 04:27
题解
c++
算法
ABC340 A-F题解
ACCode:#include#include#include#include#include#include#include#include#include#includeusing
namespace
std
smart_stupid
·
2024-02-20 04:57
算法
c++
数据结构
图论
ABC341A-D题解
ACCode:#include#include#include#include#include#include#include#include#include#includeusing
namespace
st
smart_stupid
·
2024-02-20 04:52
c++
算法
C#,二进制数的按位旋转(Bits Rotate)算法与源代码
2源程序usingSystem;usingSystem.Text;usingSystem.Collections;usingSystem.Collections.Generic;
namespace
Legalsoft.Truffer.Algori
深度混淆
·
2024-02-20 03:23
C#算法演义
Algorithm
Recipes
算法
c#
蓝桥杯
Avalonia学习(二十二)-等待
usingAvalonia.Controls.Primitives;usingAvalonia.Media;usingSystem;usingSystem.Collections.Generic;usingSystem.Text;
namespace
AvaloniaProgressRing
jason成都
·
2024-02-20 02:37
学习
ui
Avalonia
P1009 [NOIP1998 普及组] 阶乘之和
参考代码&&代码解读#includeusing
namespace
std;inta[1000];//存储阶乘得到的每一位数intb[1000];//存储当前相加和得到的每一位数intmain(){intn
126wkw2024
·
2024-02-20 02:49
算法
c++
数据结构
洛谷 P1150 Peter 的烟
参考代码and代码解读#includeusing
namespace
std;intmain(){intn,k,nonu;//n烟的数量,k需要多少根烟头换一支烟,nonu记录烟头的个数cin>>n>>k;
126wkw2024
·
2024-02-20 02:49
算法
c++
洛谷 P1996 约瑟夫问题
参考代码#includeusing
namespace
std;intmain(){intn,m;inta[1000]={0};intf=0,t=0,s=0;c
126wkw2024
·
2024-02-20 02:19
算法
c++
c语言
洛谷 P1019 [NOIP2000 提高组] 单词接龙
参考代码#includeusing
namespace
std;strings[25];intvis[25],ans,now=1,n;voiddfs(intk){ans=max(ans,now);for(inti
126wkw2024
·
2024-02-20 01:47
深度优先
算法
数的三次方根(二分方法的运用)
数据范围-1000#includeusing
namespace
std;intmain(){doublea;scanf("%lf",&a);printf("%.6lf",cbrt(a));return0;
清风青筝
·
2024-02-20 01:17
蓝桥杯
c++
算法
浮点数二分之数的三次方根
解题代码:#includeusing
namespace
std;intmain(){doublex;cin>>x;doublea=0,b=x;while(b-a>1e-7){doublemid
zjx...
·
2024-02-20 01:17
基础算法
蓝桥杯
c语言
c++
C++ 浮点数二分 数的三次方根
数据范围−10000≤n≤10000输入样例:1000.00输出样例:10.000000#includeusing
namespace
std;doublen;intmain(){scanf("%lf",&
伏城无嗔
·
2024-02-20 01:13
二分查找
力扣
算法笔记
c++
算法
开发语言
数的三次方根 (C++)题解
数据范围:−10000≤n≤10000−10000≤n≤10000输入样例:1000.00输出样例:10.000000解题思路:浮点数的二分代码:#includeusing
namespace
std;intmain
Lie。.
·
2024-02-20 01:43
c++
算法
开发语言
2019-12-04
:内置锂电池(4)价格(price):499usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;
namespace
task03
2f0fae0b4b67
·
2024-02-20 01:43
AcWing1239.乘积最大
注意,如果X#include#include#includeusing
namespace
std;constintN=100005,mod=1000000009;inta[N],n,k;longlongres
techpupil
·
2024-02-20 01:34
算法
数据结构
贪心
并查集算法模板
路径压缩优化(重点)在并查集算法中,有一个p[N]数组,用来存储该节点的节点的编号每一个集合都有唯一的一个编号初始化,自身为一个集合,父节点的编号指向自己r(inti=1;i#includeusing
namespace
std
温柔了岁月.c
·
2024-02-20 01:57
算法模板总结
算法
并查集
C++
acwing
树状数组算法模版
树状数组算法模版树状数组算法原理基本操作模版题树状数组算法原理这里注意:C[x]的含义和lowbit()函数基本操作最基本的操作主要是两种1.改变某个数(单点修改)2.区间查询模版题#include#includeusing
namespace
std
温柔了岁月.c
·
2024-02-20 01:57
算法模板总结
算法
C++
树状数组
算法模版
C++ 得到map中最后一个元素
C++得到map中最后一个元素#include#include#includeusing
namespace
std;intmain(){///1.初始化mapmapStudent;mapStudent[1
白开水。
·
2024-02-20 01:45
c++
windows_tcp简单代码
if_MSC_VER>=1600//VS2010版本号是1600#pragmaexecution_character_set("utf-8")#endif#include"mynetdump.h"using
namespace
std
轩宇^_^
·
2024-02-20 00:56
c++
windows
tcp/ip
网络协议
typescript中的class与interface和type的区别
目录Interface(接口)Class(类)Type(类型)区别和用途declareclass和declare
namespace
的区别declareclassdeclare
namespace
declareinterfacedeclare
特立独行的猫a
·
2024-02-19 23:52
HarmonyOS极简教程
node.js
vue.js
typescript
javascript
前端
Shell Script
foriin`kubectlgetpod--
namespace
speech-cn-lapp=locust|awk'{if(NR>1)}{print$1}'`dokubectlcp$i:/home/
Jenny测试开发
·
2024-02-19 23:20
基本能力
linux
运维
服务器
P1009 [NOIP1998 普及组] 阶乘之和
输入输出样例输入3输出9蒟蒻在厕所蹲了半小时后也是写出了代码,但不对,先康康:#includeusing
namespace
std;inta[2000],c[2000];vo
菜就多练,输不起就别玩儿
·
2024-02-19 23:13
c#
数据结构
c语言
c++
开发语言
P1025 [NOIP2001 提高组] 数的划分
输入格式n,k(6using
namespace
std;intn,k,f[201][7];intmain(){cin>>n>>k;for(inti=1;ip)f[i][p]=f[i-1][p-1]+f[i-p
菜就多练,输不起就别玩儿
·
2024-02-19 23:43
c++
c语言
P1008 [NOIP1998 普及组] 三连击
输出样例192384576·········(剩余部分不予展示······)没啥说的吧,就是一个1998区的一个小BOSS,干呗代码走起#includeusing
namespace
std;intm
菜就多练,输不起就别玩儿
·
2024-02-19 23:12
c++
c语言
c#
开发语言
4.函数模板的局限性
#includeusing
namespace
std;templatevoidCompare(T&a,T&b){if(a==b){coutb){coutb"#includeusing
namespace
std
Yuga...
·
2024-02-19 23:12
STL学习笔记
c++
算法
开发语言
5.类模板
#include#includeusing
namespace
std;templateclassPerson{public:Person(NameTypename,AgeTypeage){this->Myname
Yuga...
·
2024-02-19 23:12
STL学习笔记
c++
算法
开发语言
3.普通函数与函数模板的调用规则
-可以通过空模板参数列表来强制调用函数模板-函数模板也可以发生重载-如果函数模板可以产生更好的匹配,优先调用函数模板(1).如果函数模板和普通函数都可以实现,优先调用普通函数#includeusing
namespace
std
Yuga...
·
2024-02-19 23:11
STL学习笔记
c++
算法
开发语言
二.自定义头文件
Worker-继承关系:所有其他类(Employee、Manager、Boss)都继承自该抽象类-头文件保护:使用pragmaonce防止头文件重复包含-引入标准库:包含和头文件-命名空间:使用了using
namespace
std
Yuga...
·
2024-02-19 23:41
C++基于多态的职工管理系统
c++
开发语言
C++基于多态的职工管理系统完整代码
部分:1.1Worker.h/*这是一个抽象的职工父类,以下类都继承自该类:1.Employee类2.Manager类3.Boss类*/#pragmaonce#include#includeusing
namespace
std
Yuga...
·
2024-02-19 23:41
C++基于多态的职工管理系统
c++
开发语言
信息安全——凯撒密码
图片发自App#include#include#include#include#defineN100using
namespace
std;//凯撒密码//加密公式f(a)=(a+3)mod26//解密公式
九入青冥
·
2024-02-19 22:27
蓝桥杯:01串的熵讲解(C++)
代码放在下面,代码中重要的细节全都写了注释,非常清晰明了:#includeusing
namespace
std;intmain(){//请在此输入您的代码intn=23333333;//01串的长度doubletarget
DaveVV
·
2024-02-19 22:02
蓝桥杯c++
蓝桥杯
c++
c语言
算法
数据结构
AtCoder Beginner Contest 216 D - Pair of Balls 大模拟
D参考dfs那里很妙:队列i和local成对子,一起pop后要继续搜loca,因为i在退出dfs后会继续在while里判断,如果还有又进dfs;#includeusing
namespace
std;typedeflonglongll
karshey
·
2024-02-19 22:01
我的ACM之路
C++
AtCoder Beginner Contest 239 (A - E)
A-Horizon题意:给你一个xxx,输出x(12800000+x)\sqrt{x(12800000+x)}x(12800000+x)的值做法:直接输出,注意精度#includeusing
namespace
std
谪星.
·
2024-02-19 22:00
AtCoder
算法
KMP算法
一定注意读数据从1偏移开始#includeusing
namespace
std;constintN=1e6+5;chara[N],b[N];intnxt[N];intmain(){scanf("%s%s"
Loboqui
·
2024-02-19 22:03
掘根宝典之C++类模板大全
template模板类声明解释:template声明创建模板typename表明其后面的符号是一种数据类型,可以用class代替T是通用的数据类型,名称可以替换,通常为大写字母示例:#includeusing
namespace
std
掘根
·
2024-02-19 22:04
c++
算法
开发语言
c++代码 飞机大战
话不多说,直接开更:c++代码飞机大战#include#include#include#include#includeusing
namespace
std;//函数外全局变量定义intposition_x1
2301_81590055
·
2024-02-19 20:34
c++
stm32
单片机
c++递增运算符重载(某马)
#define_CRT_SECURE_NO_WARNINGS#includeusing
namespace
std;classMyInter{friendostream&operatorm_Num++;return
无涯之涯
·
2024-02-19 20:25
C# Winfrom实现的肺炎全国疫情实时信息图
usingNSoup.Nodes;usingSystem.IO;usingSystem.Net;usingSystem.Text.RegularExpressions;usingSystem.Windows.Forms;
namespace
Pneumonia
zls365365
·
2024-02-19 20:21
c#
开发语言
vue2中vuex的各项的各种调用方式,部分对比vue3的pinia
Vue.use(Vuex)再newVuex.store()的方式来实例化仓库,模块则是通过创建modules文件夹,在新建的文件中export符合规范的对象,这样约定俗成的方式来创建,然后一些限制就是模块需要加上
namespace
d
强啊啊强
·
2024-02-19 19:48
vue2技巧
前端知识
前端
javascript
开发语言
2024.2.18 C++&&QT 作业
#includeusing
namespace
std;classAnimal{public:virtualvoidperform(){coutperform();animal2->perform()
Carl余
·
2024-02-19 19:11
c++
开发语言
【c++】vector的增删查改
1.先定义一个类对象vector为了防止和库里面发生冲突,定义一个命名空间,将类对象放在命名空间里面#includeusing
namespace
std;
namespace
zjw{classvector{
嘎嘎旺
·
2024-02-19 19:42
c++
c++
算法
开发语言
C++opencv图像算数操作-加减乘除
quick_opencv.h#includeusing
namespace
cv;classQuickDemo{public:voidoperators_demo(Mat&image);//图像算数操作};
忙什么果
·
2024-02-19 19:35
opencv
c++
opencv
开发语言
1049 Counting Ones(30 分)
分离一个数的左右数#include#includeusing
namespace
std;intans;intmain(){intn;scanf("%d",&n);inta=1,left,right;while
DaiMorph
·
2024-02-19 18:13
C++题目打卡2.18
#includeusing
namespace
std;intmain(){intn,ans1=0,ans2=0;cin>>n;for(inti=0,a;i>a,(ans1>=ans2?
EthanWYC601
·
2024-02-19 18:43
c++
开发语言
谁拿了最多奖学金——NOIP 2005 提高组
4YaoLin8782YN0ChenRuiyi8878NY1LiXin9288NN0ZhangQin8387YN1输出样例:ChenRuiyi900028700这道题用结构体做对吧#includeusing
namespace
std
EthanWYC601
·
2024-02-19 18:12
算法
c++
数据结构
C++寒假打卡2.19
做法首先可以这样:#includeusing
namespace
std;intmain(){chara;cin
EthanWYC601
·
2024-02-19 18:07
c++
算法
开发语言
Kubernetes实战:通过ClusterIP方式访问springboot服务
kubernets-discovery-service_service.yaml文件,yaml文件内容如下apiVersion:v1kind:Servicemetadata:name:kubernets-discovery-service
namespace
道法自然 实事求是
·
2024-02-19 16:16
Kubernetes
kubernetes
spring
boot
容器
上一页
6
7
8
9
10
11
12
13
下一页
按字母分类:
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
其他