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
std::strin
std
::condition_variable/lock_guard/unique_lock一种死锁情况
std
::mutexmtx_;
std
::condition_variablecv_;intn_;在线程①中
std
::unique_locklck(mtx_);cv_.wait(lck);n_=***;在线程
sidemap
·
2024-01-26 21:01
总结
c++
开发语言
后端
std
::bind与
std
::thread学习笔记
std
::bind1、bind函数,如果在创建
std
::bind将参数设置为具体变量,则在执行该bind函数时,这个参数的值就为设置时变量的值。
sidemap
·
2024-01-26 21:31
总结
c++
快速排序基础入门
#includeusingnamespace
std
;constintN=1e5;intN;intq[];voiquick_sort(intq[],intl,intr){if(l>=r)return;inti
中北萌新程序员
·
2024-01-26 21:16
算法
求救,c++string类型变量无法输出中文(环境:mingw+vscode)
#include#includeusingnamespace
std
;typedefstruct{stringname;stringsex;intage;}people;intmain(){inti;peoplestudent
伏虎山真人
·
2024-01-26 21:08
c++
c++
c语言测试malloc能得到的内存大小
malloc()函数用来动态地分配内存空间,其原型为:void*malloc(size_tsize);这个函数是包含在
std
lib.h的头文件里的1.malloc是用来进行内存分配,如不知道数组大小,需要动态分配
伏虎山真人
·
2024-01-26 21:07
c++ bitset使用方法
bitset使用方法
std
::bitset是C++中用于处理二进制位的标准库类,它允许你以一种直观的方式操作二进制位。
Liuuuu408
·
2024-01-26 20:52
c++
c++
开发语言
C++常用总结
1、提高cin与cout效率cin与cout效率相比于scanf与printf低下解决方案:ios:sync_with_
std
io(false);cin.tie(0),cout.tie(0);2、C++
魏大橙
·
2024-01-26 20:25
数据结构与算法
c++
开发语言
倒计时79天
复盘1.1.0日期统计-蓝桥云课(lanqiao.cn)#includeusingnamespace
std
;#defineintlonglongconstintinf=0x3f3f3f3f;constintN
算法怎么那么难啊
·
2024-01-26 20:54
c++
倒计时78天
复盘2.15.bfs1)从(x1,y1)到(x2,y2)最短距离#includeusingnamespace
std
;constintN=3e4+5;constintinf=0x3f3f3f3f;#defineintlonglonginta
算法怎么那么难啊
·
2024-01-26 20:54
c++
倒计时81天
倒计时82天-CSDN博客蓝桥杯2022年第十三届省赛真题-扫雷-C语言网(dotcpp.com)1)#includeusingnamespace
std
;#defineintlonglongconstintinf
算法怎么那么难啊
·
2024-01-26 20:23
c++
cppcheck 安装
tar-zxvfcppcheck-2.13.0.tar.gz-C/usr/share/cppcheckmakesudomakeinstallFILESDIR=/usr/share/cppcheck否则会出现找不到
std
.cfg
一帘忧梦
·
2024-01-26 19:40
linux
linux
Learn C++学习笔记:第M章—
std
:: weak_ptr解决
std
:: shared_ptr的循环依赖问题
为什么需要weak_ptr之前介绍的
std
::shared_ptr可以彼此共同管理一块内存,比喻的话,有点像链表,一个指针接一个指针,然后连接到内存上,释放一个指针这个链表少一个节(指)点(针)。
不要熬夜多喝热水
·
2024-01-26 19:15
C++
C++11新特性——智能指针之weak_ptr
示例:#include#includeusing namespace
std
;classBB;classAA{public: st
is-zq
·
2024-01-26 19:13
C++
c++
开发语言
牛客NC21545牛牛的朋友(C++)
代码#includeusingnamespace
std
;signedmain(){ios
Xyzz1223
·
2024-01-26 19:11
算法
c++
开发语言
牛客NC21740移动石头(C++)
题目链接实现方法读取数据时分别计算两个数组的总和,若不相等输出-1;计算每两堆石头之间的差值,该差值就是需要移动的数量;将差值的绝对值计入总和,并将差值与下一个差值相加;代码#includeusingnamespace
std
Xyzz1223
·
2024-01-26 19:11
算法
c++
算法
开发语言
牛客NC21613牛牛的战役(C++)
代码#includeusingnamespace
std
;#defineintlonglong//需要自定义cmp函数,同时将敌军的战斗
Xyzz1223
·
2024-01-26 19:09
算法
c++
开发语言
算法------(4)双指针
#include#include#includeusingnamespace
std
;constintN=1e5+10;inta[N],s[N];intmain(){in
FancySuMMer11
·
2024-01-26 19:36
算法基础课
算法
c++
算法------(7)高精度
#include#include#include#includeusingnamespace
std
;vectorA,B;vectoradd(vector&A,vector&B
FancySuMMer11
·
2024-01-26 19:36
算法
c++
数据结构
算法------(9)哈希表
#include#include#includeusingnamespace
std
;constintN=3000
FancySuMMer11
·
2024-01-26 19:36
算法基础课
算法
散列表
数据结构
C++:类型转换和IO流
文章目录C语言的类型转换C++的强制类型转换static_castreinterpret_castconst_ca
std
ynamic_cast注意RTTI流的概念C++中的IO流标准IO流多组数据的输入和输出问题
海绵宝宝de派小星
·
2024-01-26 19:05
C++
知识总结
c++
算法
开发语言
js脚本扫描文件并添加test-id以执行自动化测试
/path/to/folder";con
std
ataTestId="data-test-id";functionprocessFiles(folderPath){fs.readdirSync(fo
条件if循环
·
2024-01-26 19:04
javascript
前端
开发语言
【C++程序题】字符数量
字符总数#includeusingnamespace
std
;intmain(){chara[100000];inti=0;intj;intk;charc;//第一步提取数据到数组a[]while((c=
好问者
·
2024-01-26 18:42
c++
算法
开发语言
C++面向对象实验四
//String.h#includeusingnamespace
std
;classString{private:cha
亚亚带我飞
·
2024-01-26 18:25
c++
c++
算法
开发语言
001-02 各种增强
实用性增强-变量可以在任意地方定义#include"iostream"usingnamespace
std
;//C语言中的变量都必须在作用域开始的位置定义!!
有何不可12317
·
2024-01-26 18:22
Codeforces Round 161 (Rated for Div. 2)(Codeforces日记)
个字符必须与其不同才能匹配如果si是小写字母,则其他字符串的第i个字符必须与其相同才能匹配解题思路:直接判断有无Ai不等于Ci且Bi不等于Ci即可AC代码:#includeusingnamespace
std
joesx
·
2024-01-26 18:12
算法
c++
牛客周赛 Round 29 A---E
solution判断数字的大小code#include#include#includeusingnamespace
std
;typedeflonglongll;lla,b;intmain(){cin>>a
子衿h
·
2024-01-26 18:42
牛客
算法
数据结构
c++
牛客周赛 Round 29 (A,B,C,D,E,F)
A小红大战小紫思路:比大小,没什么好说的code:#include#includeusingnamespace
std
;intmain(){inta,b;cin>>a>>b;puts((a==b)?"
邪神与厨二病
·
2024-01-26 18:11
牛客
c语言
开发语言
c++
牛客
算法
牛客周赛 Round 29 (A-E , c++)
比赛地址:牛客竞赛_ACM/NOI/CSP/CCPC/ICPC算法编程高难度练习赛_牛客竞赛OJA:小红大战小紫思路:那个数大就那个赢,相等就是平局;代码:#includeusingnamespace
std
ros275229
·
2024-01-26 18:41
算法学习
NowCoder
c++
开发语言
牛客
【CSP认证考试】202309-1:坐标变换(其一)100分解题思路+代码
样例输入3210100010-201-100样例输出21-1120-10代码#includeusingnamespace
std
;intmain(){intn,m,x=0
Ulpx
·
2024-01-26 18:09
CCF CSP认证考试
算法
c++
学习方法
经验分享
笔记
牛客周赛 Round 29(A B C D E)
:AC代码:E.小红构造数组题目大意:解题思路:AC代码1:AC代码2:总结:A.小红大战小紫题目大意:输出胜负还是平局解题思路:A>B问题,签到AC代码:#includeusingnamespace
std
joesx
·
2024-01-26 18:37
c++
算法
LeetCode #865 Smallest Subtree with all the Deepest Nodes 具有所有最深节点的最小子树
865SmallestSubtreewithalltheDeepestNodes具有所有最深节点的最小子树Description:Giventherootofabinarytree,thedepthofeachnodeistheshorte
std
istancetotheroot.Returnthesmallestsubtreesuchthatitcontainsallthedeepestnodes
air_melt
·
2024-01-26 17:02
北京理工大学计算机考研机试KY258 日期累加
示例1输入:1200823100复制输出:2008-05-13思路#includeusingnamespace
std
;intdaymonth[2][13]={0,31,28,31,30,31,30,
weixin_43820008
·
2024-01-26 17:24
考研机试
考研
机试
c
c++
题目1432:叠筐 九度OJ
输入:输入是一个个的三元组,分别是,外筐尺寸n(n为满足0#includeusingnamespace
std
;charbasket[82][82];intmain(){intn;chara,b;w
寻找如意
·
2024-01-26 17:18
考研机试(C++)
C++
考研机试
C++
关于SQLite 的下载与使用。配合python
importsqlite3conn=sqlite3.connect('te
stD
B.db')
laocooon523857886
·
2024-01-26 17:11
sqlite
数据库
[蓝桥杯]真题讲解:砍树(DFS遍历、图的存储、树上差分与LCA)
真题讲解:砍树(DFS遍历、图的存储、树上差分与LCA一、视频讲解二、暴力代码三、正解代码一、视频讲解视频讲解二、暴力代码#include#defineintlonglongusingnamespace
std
Turing_Sheep
·
2024-01-26 17:02
备战蓝桥杯
#
搜索与图论题目
蓝桥杯
深度优先
职场和发展
2024年华为OD机试真题-字符串变换最小字符串-(C++)-OD统一考试(C卷)
输入描述:一串小写字母组成的字符串s输出描述:按照要求进行变换得到的最小字符串补充说明:s是都是小写字符组成1#includeusingnamespace
std
;intmain(){inti=0;stringstr
2023面试高手
·
2024-01-26 17:30
华为od
c++
开发语言
华为
算法
stm32 linux编译提示 g++ error: nano.specs: No such file or directory 解决
cannotreadspecfile'nano.specs':Nosuchfileordirectorysudoaptinstalllibnewlib-arm-none-eabi新提示cannotfind-l
std
c
yvee
·
2024-01-26 16:07
stm32
linux
嵌入式硬件
C++基础1---C++入门
学习网站:C语言网.C语言基础:C语言基础.编译器:RedPandaDev-C++1.第一个C++程序#include//文件包含;包含iostream标准库;usingnamespace
std
;//声明使用一个叫
鱼香Ross
·
2024-01-26 16:55
面试
学习路线
杂选
java
java进阶
后端
蓝桥杯备战——完全日期
问2001年1月1日到2021年12月31日有多少完美日期模拟日期遍历至20211231即可//问2001年1月1到2021年12月31有多少个完全日期#includeusingnamespace
std
CZMM@dehua
·
2024-01-26 16:16
蓝桥杯
蓝桥杯备战——纯质数
#includeusingnamespace
std
;intx=0;constintN=2e7+200,M=3e8;intprime[N];intvis[M];voidoula(intn){for(inti
CZMM@dehua
·
2024-01-26 16:15
蓝桥杯
蓝桥杯备战——k倍区间
应用同余定理若b-a为k的倍数则b模k等于a模k#includeusingnamespace
std
;longlongs[100005];longlongmo[100005];intmain(){intn
CZMM@dehua
·
2024-01-26 16:45
蓝桥杯
c++
LeetCode-27 - Remove Element
removeallinstancesofthatvaluein-placeandreturnthenewlength.Donotallocateextraspaceforanotherarray,youmu
std
othisbymodifyingtheinputarrayin-placewithO
空即是色即是色即是空
·
2024-01-26 15:23
C/C++ 跨文件共享全局变量
效果项目代码Common.h#pragmaonce#includeusingnamespace
std
;structpara{boolstate;intnum;stringna
乱蜂朝王
·
2024-01-26 15:36
C++
c++
开发语言
python 控制输出流(sys模块)-笔记
sys.
std
out控制流重定向输出在Python中,文件对象sys.
std
in、sys.
std
out和sys.
std
err分别对应解释器的标准输入、标准输出和标准出错流。
Charonsl
·
2024-01-26 15:37
QT中实现C++使用线程操作
自C++11开始后C++有了标准的线程库:
std
::thread,各种支持C++11及更改版本的IDE都可以使用,便于是使用C++开发多线程库供多平台使用。
MAX在码字
·
2024-01-26 15:25
C++
c++
多线程
QT
ANSI C类型限定符(const、volatile)
C90恒常性const易变性volatileC99restrict用于提高编译器优化C11_AtomicC11提供一个可选库,由
std
atomic.h管理,以支持并发程序设计,而且_Atomic是可选支持项
菜鸟学编程o
·
2024-01-26 14:12
C语言
c语言
javascript
前端
C++ Qt day2
voidinit(intw,inth)更改宽度的函数:set_w(intw)更改高度的函数:set_h(inth)输出该矩形的周长和面积函数:voidshow()#includeusingnamespace
std
心若向阳,何惧悲伤
·
2024-01-26 14:27
嵌入式学习-C++
Qt
c++
qt
开发语言
运算符重载
#includeusingnamespace
std
;classVector{private:int_x1;int_x2;int_x3;publi
Epiphanywh
·
2024-01-26 14:53
开发语言
C++
运算符重载
【C++】:shared_ptr和unique_ptr
std
::unique_ptr:独占资源所有权的指针。
std
::shared_ptr:共享资源所有权的指针。
heater404
·
2024-01-26 13:34
C/C++
shared_ptr
unique_ptr
C++类与对象笔记十四:多态一:多态概念、虚函数、动态多态、静态多态、重写虚函数、里氏转换法
#includeusingnamespace
std
;classAnimal{public:voidSpeak(){c
xiaoyaolangwj
·
2024-01-26 13:04
C++
c++
多态
面向对象
虚函数
动态多态
上一页
60
61
62
63
64
65
66
67
下一页
按字母分类:
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
其他