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
NameSpaces
[转载]C++基础用法——size()、length()
stringstr="NASA";intlen=str.length();完整版:#includeusing
namespaces
td;intmain(){stringstr="NASA";intlen=
青樱部_OFFICIAL
·
2024-08-21 22:38
c++
基础算法
k8s笔记——资源对象
PodNode
NamespaceS
erviceVolumePersistentVolumeDeploymentSecretStatefulSetDaemonSetServiceAccountReplicationControllerReplicaSetJobCronJobSecu
怪我冷i
·
2024-08-21 19:23
golang从入门到入门
云原生
kubernetes
c++中如何判断变量的数据类型,并输出
该运算符返回一个std::type_info类型的对象,可以使用name()方法获取其名称从而确定变量的类型,例如:#include#includeusing
namespaces
td;intmain()
xnrbjy
·
2024-03-29 11:45
c++
开发语言
【数据结构】实验一 实现顺序表各种基本运算的算法
i个元素前插入一个正整数x;4、删除线性表中的第j个元素;5、将线性表中的元素按升序排列;6、将线性表中的元素就地逆序(只允许用一个暂存单元);#include#defineSIZE1000using
namespaces
td
张鱼·小丸子
·
2024-03-29 04:34
数据结构实验
c++
数据结构
蓝桥杯:数的分解
思路循环遍历看每个数的每位代码#includeusing
namespaces
td;boolcheck(intnum){while(num){intdigit=num%10;if(d
云格~
·
2024-03-26 10:26
蓝桥杯
蓝桥杯
算法
职场和发展
数据结构
c语言
c++
opencv | 计算轮廓的质心
#include#include#include#includeusingnamespacecv;using
namespaces
td;Matsrc;Matsrc_gray;intthresh=30;intmax_thresh
DdddJMs__135
·
2024-03-26 07:53
分享
opencv
人工智能
计算机视觉
蓝桥杯day10刷题日记
P8604[蓝桥杯2013国C]危险系数思路:dfs,用深度优先搜索查找一次所有的线路,过程中记录每个点走过的次数,最后在与总路线数比较,相同即为每次必过的点,即关键点#includeusing
namespaces
td
jia_jia_LL
·
2024-03-26 07:23
蓝桥杯
蓝桥杯
算法
图论
dfs
刷题
笔记
数据结构
C++中using namespace std的作用以及vector数组的使用
C++中using
namespaces
td的作用以及vector数组的使用本文为自我学习记录,主要包括C++中using
namespaces
td的作用vector数组的使用文章目录C++中using
namespaces
td
宁77吖
·
2024-03-26 04:48
数据结构
c++
学习
开发语言
【快速幂、欧拉函数】蓝桥杯第十四届---互质数的个数
给定a,b,求1≤xusing
namespaces
td;typedeflonglongLL;constintmod=998244353;LLquick_pow(LLa,LLb){LLres=1;while
bug~bug~
·
2024-03-26 01:15
蓝桥杯
蓝桥杯
职场和发展
8x8图形取模软件2.0
一不小心把它也开始连载了,最近又有考试,只能偶尔更新一下了更新:选中的格子可以取消选中,程序结束时暂停,直到用户输入enter#include#include#includeusing
namespaces
td
Jsjjsnmsk
·
2024-03-25 23:42
单片机
stm32
嵌入式硬件
洛谷入门——P1150 Peter 的烟
输入格式每组测试数据一行包括两个整数n,kn,kn,k(1using
namespaces
td;intmain()
Fiona Tracy
·
2024-03-25 22:42
c++算法
算法
c++
P9241--DFS
#includeusing
namespaces
td;#defineintlonglongstructplane{intt,d,l;//如题}a[16];intn,f;intbo[16];//标记voiddfs
泛舟起晶浪
·
2024-03-25 20:10
深度优先
算法
图论
C#关键字 namespace
namespaceS
omeNameSpace{pu
xklcy
·
2024-03-25 00:44
C#关键字
c#
开发语言
【欧拉函数+快速幂】第十四届蓝桥杯省赛C++ C组 Java A组/研究生组 Python 研究生组《互质数的个数》(C++)
【题目描述】给定a,b,求1≤x#include#includeusing
namespaces
td;typedeflonglongLL;constintMOD=998244353;LLqmi(LLa,LLb
北洋的霞洛
·
2024-03-24 07:25
蓝桥杯历年真题
蓝桥杯
c++
算法
模板方法模式
HDU1870 愚人节的礼物
AC的C++代码如下:#include#includeusing
namespaces
td;intmain(){strings;intcount;while(getline(cin,s)){count=0
m0_38056893
·
2024-03-22 04:51
HDU题解
HDU题解
1054:三角形判断
【输入样例】345【输出样例】yes【参考答案】:#includeusing
namespaces
td;intma
yuhaoteng666
·
2024-03-20 07:47
一本通答案
c++
《牛客》-D 小红的中位数
采用模拟的方式(用vector进行优化)2.可以算是思维进行‘优化’思路大家都挺好想的,就是其中的细节(具体思路可以参考以下代码,豁然开朗(逃~))ACcode:1(优雅帅气stl)#includeusing
namespaces
td
gentle coder
·
2024-03-18 19:30
c++
算法
stl
【CSP试题回顾】202312-1-仓库规划
CSP-202312-1-仓库规划解题代码#include#includeusing
namespaces
td;intn,m;intmain(){cin>>n>>m;vector>posList(n,vector
LOST P
·
2024-03-18 15:55
CSP备考
算法
c++
2023郑州大学招新赛暨选拔赛补题
U287344B.NANA学跳舞-洛谷|计算机科学教育新生态(luogu.com.cn)U287345C.NANA去上课-洛谷|计算机科学教育新生态(luogu.com.cn)#includeusing
namespaces
td
Shuzi_master7
·
2024-03-18 05:11
算法
蓝桥杯刷题九
实际上分析时间复杂度是不能过的先给暴力代码#includeusing
namespaces
td;constintN=1e4+10;boolst[N][N];intsum;intn;intmain(){cin
没头发的年轻人
·
2024-03-17 18:27
蓝桥杯
蓝桥杯
算法
迷宫问题(c++题解)
题目描述设有一个N*N(2using
namespaces
td;intn,ans;inta[10005][10005];intf[9][9]={{0,1},{1,0},{-1,0},{0,-1},{1,1
hb_zhyu
·
2024-03-17 15:52
c++
开发语言
除留余数哈希表
#include#include#include#includeusing
namespaces
td;intcreat_num()//创造两位数的整数{intn=rand()%9;n=n*10+(rand
路痴楷
·
2024-03-16 23:31
数据结构学习日志
C++学习日志
没发现问题的题
散列表
哈希算法
数据结构
c++
数据结构.pta测试二
#includeusing
namespaces
td;typedefstructnode{intdata;node*next;}*List;ListlistPoduce(){inta;ListL;node
丰海洋
·
2024-03-15 13:44
数据结构
OJ_复数集合
题干C++实现#define_CRT_SECURE_NO_WARNINGS#include#include#includeusing
namespaces
td;structComplex{intre;intim
Listennnnnnm
·
2024-03-15 09:37
数据结构与算法
c语言
算法
c++
OJ_哈夫曼树
实现从小根堆的选择最小的两个合并加和,然后插入回小根堆然后重复上述两个步骤,直到只剩一个元素#define_CRT_SECURE_NO_WARNINGS#include#include#includeusing
namespaces
td
Listennnnnnm
·
2024-03-15 09:37
数据结构与算法
c++
算法
代码随想录算法训练营Day45 ||leetCode 70. 爬楼梯 (进阶)|| 322. 零钱兑换 || 279.完全平方数
70.爬楼梯(进阶)本质上和leetcode377一样#include#includeusing
namespaces
td;intmain(){intn,m;while(cin>>n>>m){vectordp
qq_44884699
·
2024-03-14 11:06
leetcode
算法
职场和发展
给定l,r(1e18),定义f(x):x中最大的数位减去最小数位。对于l<=x<=r, 求f(x)最小值
题目#includeusing
namespaces
td;#defineintlonglong#definepbpush_back#definefifirst#definesesecond#definelsonp
__night_
·
2024-03-14 07:00
codeforces
算法
运算符重载函数operator的简单用法与常用案例
案例1、重载+号,返回值类型的使用2、重载operator(){}示例:给node结构体重载小于号(首先比较x,如果x相同比较y)structnode{intx,y;booloperatorusing
namespaces
td
叶域
·
2024-03-14 00:52
算法竞赛
C/C++语法
算法
c++
数据结构
排序算法
P1948 [USACO08JAN]Telephone Lines S
该市周围分布着1#include#include#include#include#include#include#includeusing
namespaces
td;inlineintread(){intw
玦卿
·
2024-03-13 21:46
二分
双端队列
c++
C++实现LRU缓存
LRU代码代码#include#include#includeusing
namespaces
td;templateclassLRU{public:typedefpairPair;typedeflistList
VioletEvergarden丶
·
2024-03-13 19:14
数据结构
算法
redis
lru
c++
java
算法学习07:KMP算法
匹配过程:2.求解next数组(kmp算法重点)3.代码总结前言提示:以下是本篇文章正文内容:一、KMP算法1.kmp匹配过程:2.求解next数组(kmp算法重点)3.代码#includeusing
namespaces
td
Lhz326568
·
2024-03-10 05:00
学习打卡
算法
学习
笔记
c++
开发语言
C/C++编程:前置声明
什么是前置声明所谓「前置声明」(forwarddeclaration)是类、函数和模板的纯粹声明,没伴随着其定义.一般的前置函数声明#includeusing
namespaces
td;voidfun(charch
OceanStar的学习笔记
·
2024-03-09 21:51
C++
c++
c语言
算法
Armadillo使用介绍(八):第二个Armadillo程序
源码#include#includeusing
namespaces
td;usingnamespacearma;//Armadillodocumentationisavailableat://http:/
UPUPUPEveryday
·
2024-03-09 15:44
Armadillo
armadillo
c++
vs
C/C++ 字符串反转的几种方法
0.环境说明:windows7+VSCode+mingw321.使用库方法:reverse()/**功能:字符串反转*/#include#include#includeusing
namespaces
td
不知道叫什么好+1
·
2024-03-09 11:07
C
蓝桥杯 第二章基础算法
编程四小蓝的漆房#includeusing
namespaces
td;voidslove(constint&Case){intn,k;cin>>n>>k;vectora(n);for(auto&x:a)cin
程序设计基础
·
2024-03-08 21:19
算法
c++
c语言
蓝桥杯
leetcode-快速排序法和冒泡排序法
冒泡排序视频讲解快速排序视频动画演示#include#includeusing
namespaces
td;//1.quickSort(arr,0,n-1);注意函数调用是左闭右闭区间,所以递归调用的两次也是左闭右闭
浦东新村轱天乐
·
2024-03-08 15:40
leetcode
leetcode
算法
排序算法
找师傅(独家)
#include#include#includeusing
namespaces
td;structnode{//三种数据intx;inty;intstep;}que[1001];intsx,sy,ex,ey
xiongchenxi111
·
2024-03-07 16:10
算法
c++
数据结构
P8647 [蓝桥杯 2017 省 AB] 分巧克力
#include#defineendl'\n'usingll=longlong;typedefunsignedlonglongull;using
namespaces
td;voidGordenGhost(
GordenGhost
·
2024-03-07 13:37
蓝桥杯
c++
二分
算法
数据结构实现-线性表
顺序存储#includeusing
namespaces
td;#defineMaxSize50//静态顺序表templatestructsqList{ElemTypedata[MaxSize];//元素intlength
Mystic Musings
·
2024-03-06 22:19
数据结构实现
数据结构
考研
int与string类型转化(C++)
int转为string利用sstream类#include#includeusing
namespaces
td;intmain(){intn=10;stringstreamss;stringstr;ss>
Z-Chelsea
·
2024-03-06 00:51
C++
c++
开发语言
C++ 中大小写字母的转化
以下是常见的几种方式:1.利用ASCII码差值由于所有小写字母的ASCII码比对应的大写字母小32,可以简单地通过加减32来进行转换:#includeusing
namespaces
td;intmain(
wangnaisheng
·
2024-03-04 21:46
C++
c++
牛客周赛 Round 35(A,B,C,D,E,F,G)
code:#include#include#includeusing
namespaces
td;strings;
邪神与厨二病
·
2024-03-04 12:35
牛客
算法
暴力
c++
数论
滑动窗口
单调队列
贪心
构造
胎神游戏集第一期
那当然要先感谢我们的胎神大大了胎神洛谷名:TSzza好了,言归正传,知道你们不喜欢啰嗦,直接上代码一、变色小跳龙#include#include#include#include#includeusing
namespaces
td
偷心_鲸落
·
2024-03-03 15:36
游戏
洛谷
c++
游戏
c++
CF 1934B
冗长的代码(枚举解法)#includeusing
namespaces
td;voidsolve(){intn;cin>>n;if(n==1||n==3||n==6||n==10||n==15){cout=
三冬四夏会不会有点漫长
·
2024-03-03 10:59
#
CF
div
2
B
题
算法
【C++】核心编程--函数高级
文章目录1.函数的默认参数2.函数占位参数3.函数重载4.注意事项1.函数的默认参数在C++中,函数的形参列表中的形参是可以有默认值的//语法:返回值类型函数名(参数=默认值){}#includeusing
namespaces
td
赵远疴
·
2024-03-03 09:58
【C++】
c++
java
开发语言
鬼屋游戏c++
c++#include#include#include#include//用于随机数生成#include//用于随机数种子using
namespaces
td;//定义房间结构体structRoom{stringdescription
学习智者
·
2024-03-02 20:40
c++
Codeforces Round 929 (Div. 3)---->D. Turtle Tenacity: Continual Mods
2.极端情况就是按递增循序排序,如果这种情况都不行的话,那么就没有可行可情况,因为假如x#include#includeusing
namespaces
td;constintN=1e5+10typedeflonglongll
Touper.
·
2024-03-02 10:26
算法
【C++】一个求数组中最大元素的函数模板
CodeCodeCode#includeusing
namespaces
td;templateTMax_element(Ta[],intle
AC2656
·
2024-03-02 04:46
C++面向对象
c++
扫雷2(2537)
输入描述输入m+1行:第1行:2个整数m,n(nusing
namespaces
td;chara[110][110];intm,n;intmain(){cin>>
jht0105
·
2024-02-29 02:09
算法
c++
数据结构
牛客2024年除夕娱乐赛
A我有一款游戏code:#include#includeusing
namespaces
td;intmain(){cout#includeusing
namespaces
td;intmain(){cout#
邪神与厨二病
·
2024-02-29 01:38
牛客
娱乐
算法
c++
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
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
其他