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
Windows API压缩与解压
#include#includeusingname
spaces
td;//typed
虚构之人
·
2024-01-29 16:09
c++
操作系统
windows
c++
【刷题】动态规划——线性DP(数字三角形):摘花生
#includeusingname
spaces
td;constintN=110;intt,r,c,m;intf[N][N],w;intmain(){scanf("%d",&t);while(t--){scanf
seth25
·
2024-01-29 15:09
刷题
动态规划
算法
1015. 摘花生(动态规划)
#includeusingname
spaces
td;intmp[110][110];intdp[110][110];intt,m;intmain(){cin>>t;intr,c;while(t--){cin
代码无bug
·
2024-01-29 15:06
#动态规划
动态规划
c++
算法
AcWing 1015. 摘花生【动态规划】【数字三角形】
)算法标签(二)解题思路三、AC代码四、其它题解一、题目链接AcWing1015.摘花生二、题目分析(一)算法标签动态规划数字三角形(二)解题思路三、AC代码解法一:#includeusingname
spaces
td
Derrickhang
·
2024-01-29 15:03
动态规划
动态规划
算法
c++
数据结构
牛客——都别吵吵了,我才是签到(质因数分解和统计质因数次数)
#include#include#include#includeusingname
spaces
垠二
·
2024-01-29 15:08
算法
数据结构
分解质因数
蓝桥杯省赛无忧 编程15 泡澡
#include#include#includeusingname
spaces
td;structEvent{inttime;intwaterChange;};intmain(){intN,W;cin>>
暗托涅瓦
·
2024-01-29 14:55
蓝桥杯省赛无忧
蓝桥杯
职场和发展
蓝桥杯——肖恩的投球游戏
#includeusingname
spaces
td;constintmaxn=1e6;inta[maxn];intd[maxn];intmain(){intn,q;cin>>n>>q;for(inti=
怪憨
·
2024-01-29 14:55
蓝桥杯
C++1.0
思维导图提示输入一个字符串,统计该字符中大写,小写字母个数,数字个数,空格个数以及特殊字符个数,要求使用C++风格字符串完成#includeusingname
spaces
td;intmain(){cout
mmj12
·
2024-01-29 13:24
c++
算法
开发语言
C++2.0
初始化函数:voidinit(intw,inth)更改宽度的函数:setw(intw)更改高度的函数:seth(inth)输出该矩形的周长和面积函数:voidshow()#includeusingname
spaces
td
mmj12
·
2024-01-29 13:51
c++
数据结构
开发语言
C++多线程2(复习向)
(在对象创建时,构造函数中自动为传入的互斥锁对象上锁,局部变量被系统回收时,其析构函数自动对互斥锁对象进行解锁)代码如下#include#include#includeusingname
spaces
td
被遗忘在角落的死小孩
·
2024-01-29 13:49
c++
开发语言
C++多线程1(复习向笔记)
创建线程以及相关函数当用thread类创建线程对象绑定函数后,该线程在主线程执行时就已经自动开始执行了,join起到阻塞主线程的作用#include#include#includeusingname
spaces
td
被遗忘在角落的死小孩
·
2024-01-29 13:16
c++
笔记
开发语言
【C++】输入&输出、缺省参数、函数重载
的输入和输出缺省参数概念缺省参数的分类全缺省参数半缺省参数函数重载概念C++支持函数重载的原理--名字修饰C++的输入和输出#include//std是C++标准库的命名空间名,C++将标准库的定义实现都放到这个命名空间中usingname
spaces
td
P_M_P
·
2024-01-29 13:42
C++
c++
算法
开发语言
洛谷p1036选数
[NOIP2002普及组]选数题目描述已知nnn个整数x1,x2,⋯ ,xnx_1,x_2,\cdots,x_nx1,x2,⋯,xn,以及111个整数kkk(kusingname
spaces
td;intn
延渊
·
2024-01-29 13:40
蓝桥杯
算法
深度优先
c++
蓝桥杯
多态的相关内容
派生类和虚函数实现运行时的多态静态多态和动态多态的区别:静态多态的地址是早绑定,即编译阶段即确定函数地址动态多态的地址是晚绑定,即运行阶段才确定函数地址eg:用多态构建一个猫在说话的场景#includeusingname
spaces
td
*默~
·
2024-01-29 13:52
c++
开发语言
类的相关语法+pow函数接口介绍(用于实现幂函数)
类的基本语法概念#includeusingname
spaces
td;#include//类的定义有:类的访问权限,类的属性和类的行为classstudent{//访问权限:公共权限public://类的属性
*默~
·
2024-01-29 13:22
c++
算法
开发语言
继承的基本概念+用法
B{};---A称为子类(也称为派生类)、B称为父类(也称为基类)派生类的成员中,包含两大部分:一类是从基类中继承过来的(表现共性),一类是自己增加的成员(表现个性)#includeusingname
spaces
td
*默~
·
2024-01-29 13:22
python
开发语言
数据结构.栈
一、栈的定义二、初始化#includeusingname
spaces
td;constintN=10;typedefstruct{intdata[N];inttop;}SqStack;voidInitSqStack
丰海洋
·
2024-01-29 12:47
数据结构
数据结构.队列的顺序表示
一、队列的定义二、队列的顺序实现#includeusingname
spaces
td;constintN=10;typedefstruct{intdata[N];intfront,rear;}SqQueue
丰海洋
·
2024-01-29 12:14
数据结构
算法
C++11 explicit关键字的详细讲解
跟它相对应的另一个关键字是implicit,意思是隐藏的,类构造函数默认情况下即声明为implicit(隐式).首先通过代码示例看一下#include#includeusingname
spaces
td;
随你而归的云彩
·
2024-01-29 12:06
C/C++
c++
c++11
Codeforces Round 911 (Div. 2) C. Anji‘s Binary Tree (DFS + 树)
代码:#includeusingname
spaces
td;#defineendl"\n"typedeflonglongll;typedefpairPII;typedefpairPIII;consti
GHOSTANDBREAD
·
2024-01-29 11:38
算法笔记
深度优先
算法
c++
操作系统 磁盘调度---循环扫描(CSCAN)算法(C++实现 操作系统实验)
当磁头移到最外的磁道并访问后,磁头立即返回到最里的欲访问磁道,即将最小磁道号紧接着最大磁道号构成循环,进行循环扫描代码如下:#include#include#include#include#includeusingname
spaces
td
GHOSTANDBREAD
·
2024-01-29 11:08
操作系统
c++
算法
Codeforces Round 921 (Div. 2)
#include#defineendl'\n'#defineintlonglongusingname
spaces
td;intn,k;voidsolve(){cin>>n>>k;stringtmp;for
沫刃起
·
2024-01-29 11:36
codeforces
算法
c++
Did We Get Everything Covered? Codeforces Round 921 (Div. 2) 1925C
Problem-C-Codeforces题目大意:给出一个长度为m的字符串s,问所有长度为n且由字母表中前k个字母组成的字符串是否都是s的子序列,如果不是须给出反例1#includeusingname
spaces
td
timidcatt
·
2024-01-29 11:05
构造
贪心
算法
数据结构
c++
c语言
C++ 排序应用程序
#include#include#include//std::greater#include//std::sortusingname
spaces
td;intmain(void){inta;chartype
bcbobo21cn
·
2024-01-29 11:05
VC++
算法
c++
算法
开发语言
C++仿函数、万能头文件、transform学习
这是网上的一个代码,里面的一些东西以前没用过;#includeusingname
spaces
td;//AFunctorclassincrement{private:intnum;public:increment
bcbobo21cn
·
2024-01-29 11:34
VC++
c++
仿函数
函数对象
ES6.8.6 分词器安装&使用、查询分词结果(内置分词器、icu、ik、pinyin分词器)
文章目录ES环境默认(内置)分词器standard示例一:英文分词结果示例二:中文分词结果simplewhite
spaces
topkeywordicu分词器下载&安装方式一:下载压缩包安装方式二:命令行安装确认安装状态方式一
小白说(๑• . •๑)
·
2024-01-29 11:58
#
elasticsearch
es6
icu分词器
pinyin分词器
ik分词器
默认分词器
分词器
C++ easyX小程序:用四个方向键控制实心圆在屏幕移动
具体代码及注释如下:#include#include//为使用getch()函数#includeusingname
spaces
td;intmain(){
LaoWaiHang
·
2024-01-29 11:34
c++
小程序
算法设计与分析第五章
1.请用回溯法的方法分析“最小重量机器设计问题”#includeusingname
spaces
td;intn,m,cost;//限定价格部件数供应商数intw[100][100];//w[i][j]为第
0zxm
·
2024-01-29 10:30
算法
通过C++调用Com接口
头文件#include#include#include#includeusingname
spaces
td;#pragmacomment(lib,"Rpcrt4.lib")72C24DD5-D70A-438B
钞sir
·
2024-01-29 10:21
Windows
c++
【洛谷题解】P1706 全排列问题
输入样例:3输出样例:123132213231312321分析:从1到n遍历,列举以组为单位,n与n个数字顺序不重复的数后输出AC代码:#includeusingname
spaces
td;intn,c;
杨智123
·
2024-01-29 08:55
算法
数据结构
c++
数位dp,HDU 5179 beautiful number
beautifulnumber”ifandonlyifa[i]≥a[i+1]when1≤i#include#include#include#include#include#includeusingname
spaces
td
EQUINOX1
·
2024-01-29 08:46
OJ刷题解题报告
算法
c++
动态规划
数据结构
备战蓝桥杯--数据结构及STL应用(基础)
#includeusingname
spaces
td;structcocoack{intcoco,ck;}voidsolve(){vectorx;for(inti=0;iusingname
spaces
td
cocoack
·
2024-01-29 07:19
数据结构
c++
开发语言
蓝桥杯
C++核心编程:P3->函数提高
如果没有传入数据,就用默认值代码示例#includeusingname
spaces
td;int
爱你哦小猪猪
·
2024-01-29 05:44
C++核心编程
c++
开发语言
visual
studio
面试
c语言
C++核心编程:函数提高 笔记
如果某个位置参数有默认值,那么从这个位置往后,从左向右,必须都要有默认值2.如果函数声明有默认值,函数实现的时候就不能有默认参数(防止产生二义性,声明和实现只能有一个有默认参数)示例:#includeusingname
spaces
td
呵呵哒( ̄▽ ̄)"
·
2024-01-29 05:43
c++
笔记
核心编程
函数提高
函数重载
蓝桥云课-第4场小白赛理解
直接用变成二进制的函数或者模拟二进制的过程,找到有几个1就行第二题:自助餐题目:思路:就是用字符串代表相对应的值,题目给你一堆字符串,然后累加他们所代表的值1.map键值对存储#include#includeusingname
spaces
td
fchampion
·
2024-01-29 03:57
哈希算法
算法
c++
蓝桥杯
开发语言
多模态融合的基础问题及算法研究
Illuminatingthedark
spaces
ofhealthcarewithambientintelligence(nature.com)上面的论文是李飞飞,发表的nature上的一篇文章。
卿云阁
·
2024-01-29 02:41
pytorch
docker(三·)docker容器与网络模式
文章目录一,name
spaces
的六项隔离二,Docker网络1.端口映射2.查看容器日志3.docker的网络模式网络模式详解1.host模式:2.container模式3.none模式4.brideg
疯狂的斯图卡
·
2024-01-29 01:02
docker
网络
容器
C++Day2
初始化函数:voidinit(intw,inth)更改宽度的函数:set_w(intw)更改高度的函数:set_h(inth)输出该矩形的周长和面积函数:voidshow()#includeusingname
spaces
td
yxgjbfddgijhhhj
·
2024-01-29 01:58
c++
C++Day1
提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数#includeusingname
spaces
td;intmain(){cout='A'&&str[i]='a'&
yxgjbfddgijhhhj
·
2024-01-29 01:28
c++
C++Day3
Per类,类中包含私有成员姓名、年龄、指针成员身高、体重,再设计一个Stu类,类中包含私有成员:成绩、Per类对象P1,设计这两个类的构造函数、析构函数和拷贝构造函数#includeusingname
spaces
td
yxgjbfddgijhhhj
·
2024-01-29 01:55
c++
二分查找与二分答案-习题篇
(洛谷P1678)烦恼的高考志愿#includeusingname
spaces
td;inta[100005],b[100005];#include#includeintmain(){intm,n;cin
zhy0319
·
2024-01-29 01:13
数据结构与算法
算法
c++
数据结构
高精度算法-例题篇
一、(洛谷P1601)A+Bproblem(高精)#includeusingname
spaces
td;#include#include#definemaxn505structBigint{//定义位数和数位
zhy0319
·
2024-01-29 01:42
数据结构与算法
算法
暴力枚举-例题篇
由于n,m#includeusingname
spaces
td;intmain(){intn,m;cin
zhy0319
·
2024-01-29 01:12
数据结构与算法
算法
POJ No.1852 Ants
参考代码#include#includeusingname
spaces
td;intmain(){intN;cin>>N;intlen,n;v
我好弱啊啊
·
2024-01-29 00:39
算法
c++
数据结构
POJ
二叉树求叶子结点数以及树的深度
#includeusingname
spaces
td;typedefstructTnode{intdata;structTnode*left;structTnode*right;Tnode(intx){this
LuckyXiaoFan666
·
2024-01-29 00:34
算法
二叉树
数据结构
面试
队列
代码随想录算法训练营第四十五天|70. 爬楼梯(进阶)、322. 零钱兑换、279.完全平方数
题目:70.爬楼梯(进阶)文章链接:代码随想录题目链接:卡码网题目链接图释:#include#includeusingname
spaces
td;intmain(){intn,m;while(cin>>n
一楼二栋
·
2024-01-29 00:33
算法
leetcode
c++
代码随想录算法训练营第四十四天|完全背包、518. 零钱兑换 II、377. 组合总和 Ⅳ
题目:完全背包文章链接:代码随想录视频链接:LeetCode:完全背包题目链接:卡码网题目链接图释:#include#includeusingname
spaces
td;//先遍历背包,再遍历物品voidtest_CompletePack
一楼二栋
·
2024-01-29 00:03
算法
c++
leetcode
C++ 数论相关题目 表达整数的奇怪方式(中国剩余定理)
数据范围1≤ai≤231−1,0≤mi#includeusingname
spaces
td;typedeflonglongLL
伏城无嗔
·
2024-01-28 23:00
数论
力扣
算法笔记
c++
算法
链表的操作
#includeusingname
spaces
td;intaleng=10;structnode{intdata=0;intnlength=0;node*pnext=nullptr;};node*creat_link
zjh3029
·
2024-01-28 23:53
【工具推荐】磁盘分析工具 |
SpaceS
niffer 高效分析
文章目录1下载2分析最近发现一款很好用的工具——
SpaceS
niffer(磁盘空间分析工具)硬盘用久了,里头的文件总是杂乱不堪,十分影响效率和心情;我们往往会忘记哪些内容占用的空间比较多~所以我们如果可以高效分析哪些东西占用的空间比较多使用简单
Qodicat
·
2024-01-28 23:43
技能
工具推荐
上一页
58
59
60
61
62
63
64
65
下一页
按字母分类:
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
其他