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
Include
在Qt中,slots 关键字有什么用?
有下面的Qt代码:#ifndefMAINWINDOW_H#defineMAINWINDOW_H#
include
QT_BEGIN_NAMESPACEnamespaceUi{classMainWindow;
昊虹AI笔记
·
2025-02-04 02:34
Qt
嵌入式
qt
编写一个函数,求n的k次方#C语言
#
include
"stdio.h"doublepow(intn,intk){if(k>0)returnn*pow(n,k-1);elseif(k==0)return1;elsereturn1.0/pow
Eternallassmpsit
·
2025-02-04 00:47
c语言
算法
数据结构
ROS1学习笔记--通信编程
现在就来通过几个例子来讲讲具体的通信编程一、话题编程话题编程流程:创建发布者创建订阅者添加编译选项运行可执行程序1.创建一个发布者ROS节点初始化编写相关的节点信息,包括发布的话题名和消息类型按一定的频率循环发布消息#
include
喵喵三三
·
2025-02-03 21:22
ROS学习笔记
使用dup2+fgets+printf 实现文件拷贝功能
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
M_Lin_
·
2025-02-03 21:19
linux
代码随想录算法训练营Day51 | 101.孤岛的总面积、102.沉没孤岛、103.水流问题、104.建造最大岛屿
#
include
#
include
usingnamespacestd;intdir[
Harryline-lx
·
2025-02-03 19:43
代码随想录
算法
深度优先
从0开始C语言(7)
二维数组查找#
include
voidfind(intA[][3],introws,intcols,int*max_value,int*max_row,int*max_col){*max_value=A[
岁ovo寒
·
2025-02-03 18:31
c语言
算法
c++
求一个数的数根(高精度)
#
include
usingnamespac
甜甜的2013
·
2025-02-03 18:58
算法
c++
nginx源码解析-ngx_strerror()/ngx_strerror_init()
*/#
include
#
include
/**Thestrerror()messa
wenpeng_lu
·
2025-02-03 18:26
nginx
nginx
初识C语言02
我们现在看一段代码:#
include
intb=20;intmain(){shorta=20;return0;}在C语言中,局部变量是在函数内部或代码块(用{}括起来的区域)中定义的变量。
HIS~story @ 哲
·
2025-02-03 18:56
c语言
c++
开发语言
Ubuntu 下 nginx-1.24.0 源码分析 ngx_debug_init();
ngx_linux_config.h中#definengx_debug_init()也就是说这个环境下的main函数中的ngx_debug_init()这行代码其实什么都没有做在nginx.c的开头引入了#
include
若云止水
·
2025-02-03 18:25
nginx
运维
C语言预处理器——标记粘贴运算符(##)
#
include
#definetokenpaster(n)printf("token"#n"=%d\n"
qq_38489451
·
2025-02-03 18:24
C语言
c语言
C语言:深入了解指针1
对应到C语言代码#
include
intmain(){intnum=10;int*ptr=#printf("变量num存储的内容(相当于房间里的物品):%d\n",num
南玖yy
·
2025-02-03 17:51
c语言
算法
开发语言
Ubuntu 下 nginx-1.24.0 源码分析 - ngx_strerror_init()函数
类型声明定义intptr_t类型ngx_strerror_init()函数实现NGX_HAVE_STRERRORDESC_NPngx_strerror_init()函数声明在nginx.c的开头引入了:#
include
若云止水
·
2025-02-03 17:51
nginx
运维
优先队列(priority_queue)
#
include
#
include
usingnamespacestd;intmain(){priority_queueque;//大顶堆//priority_queue,greater>que//小顶堆que.push
祝余呀
·
2025-02-03 15:59
c++
算法
开发语言
用swap函数交换数字的时候的bug
我们先看下面一段代码#define_CRT_SECURE_NO_WARNINGS1#
include
voidswap(intx,inty){inttemp=x;x=y;y=temp;}intmain(){
编程初学者----晨哥
·
2025-02-03 12:13
bug
算法
数据结构
Windows下使用C语言的UDP编程接收网络调试助手发送的数据
代码#
include
#
include
#pragmacomment(lib,"ws2_32.lib"
机载软件与适航
·
2025-02-03 11:59
网络编程
网络
udp
c语言
Hash表
(开放寻址法,拉链法)字符串哈希方式(添加、查找h(x))常见从0~10^9映射到0~10^5就要对10^5取mod(取模一般要质数最好)但是可能会有冲突1.拉链法:O(1),每个节点拉一条链增加数#
include
KuaCpp
·
2025-02-03 10:55
算法
c++
Nginx知识
worker_processes1;#可以理解为一个内核一个worker#开多了可能性能不好events{worker_connections1024;}#一个worker可以创建的连接数#1024代表默认一般不用改http{
include
mime.types
@_@哆啦A梦
·
2025-02-03 10:53
nginx
运维
题目:利用条件运算符的嵌套来完成此题:学习成绩〉=90分的同学用A表示,60-89分之间的用B表示, 60分以下的用C表示。
以下是一个用C++实现的示例代码:#
include
chargetGrade(intscore){return(score>=90)?'A':(score>=60)?'
晚夜微雨问海棠呀
·
2025-02-03 10:52
算法
数据结构
报错:nginx: [emerg] “user“ directive is not allowed here in
directiveisnotallowedherein/alidata/server/nginx-1.11.10/conf/nginx.conf:1原因:我直接把nginx的主配置目录conf当成了虚拟主机文件的存放目录http{
include
会飞的爱迪生
·
2025-02-03 10:49
nginx
nginx
前端
服务器
C语言顺序表
希望帮助需要的人头文件#pragmaonce#
include
#
include
#
include
#
include
typedefstructList{//静态//inta[n];//动态int*a;intsize
卷柏296
·
2025-02-03 09:18
c语言
windows
开发语言
数据库
纯C代码模拟stm32 的结构体赋值,快速掌握stm32开发
简单版本//runC@https://www.jyshare.com/compile/11/#
include
//模拟GPIO寄存器结构typedefstruct{unsignedintpinState:
真实义
·
2025-02-03 09:45
c语言
stm32
单片机
代码随想录算法训练营Day38||完全背包问题、leetcode 518. 零钱兑换 II 、 377. 组合总和 Ⅳ 、70. 爬楼梯 (进阶)
#
include
#
include
usingnamespacestd;intmain(){intN,V;cin>>N>>V;vectorweight(N+1,0);vectorvalue(N+1,0);for
jiegongzhu3z
·
2025-02-03 05:15
算法
leetcode
职场和发展
(每日一题)连续⼦数组最⼤和———<动态规划-线性dp>
ii.状态转移⽅程:dp[i]=max(dp[i-1]+arr[i],arr[i])C++算法代码:#
include
#
include
usingnamespacestd;intmain(){//初始化intn
课堂随笔
·
2025-02-03 05:13
每日一题
动态规划
算法
考研
每日一题
1246. 等差数列
所以等差d为差分数组的gcdAC代码#
include
#in
Taoger_Xu
·
2025-02-03 04:36
算法
算法竞赛的头文件选择(<iostream>和<bits/stdc++.h>)
#
include
功能:是C++标准库中的一个头文件,主要用于输入输出操作。它包含了`cin`、`cout`、`cerr`和`clog`等标准输入输出流对象。
Tech007号研究员
·
2025-02-03 02:22
算法(C++)自学笔记
算法
c++
c++ STL函数对象
函数对象(防函数)是一个类,不是一个函数1.2函数对象使用:特点:函数对象在使用时,可以像普通函数那样调用,可以有参数,可以有返回值函数对象可以有自己的状态,可以做一些状态记录工作函数对象可以做为参数传递#
include
飞yu流星
·
2025-02-03 02:45
c++学习笔记
c++
算法
开发语言
搜索与图论复习1
1深度优先遍历DFS2宽度优先遍历BFS3树与图的存储4树与图的深度优先遍历5树与图的宽度优先遍历6拓扑排序1DFS:#
include
usingnamespacestd;constintN=10;intn
KuaCpp
·
2025-02-03 01:09
图论
深度优先
算法
c++ list
1.构造函数构造函数//listlst;//list(beg,end);//区间构造//list(n,elem);//元素构造//list(constlist&lst);//拷贝构造#
include
#
include
飞yu流星
·
2025-02-03 01:38
c++学习笔记
c++
list
开发语言
C++ 交换变量的四种方法
请听题:#
include
usingnamespacestd;voidswap_variables(int&n,int&m);intmain(){intn,m;cin>>n>>m;
HASHMOTO
·
2025-02-03 01:06
编程
c++
算法
c++11 实现条件变量以及利用条件变量实现多生成者与多消费者模型
自定义条件变量类:#pragmaonce//////用C++11实现跨平台的条件等待类///#
include
#
include
#
include
classLanWaitCondition{public:LanWaitCondition
不死奇迹
·
2025-02-03 01:05
C++11
自定义C++线程池
L1-006 连续因子*
这两句话非常重要也非常难理解,翻译一下:要求编写程序,求出最长连续因子中的因子个数,并输出最小的连续因子序列2.代码#
include
#
include
#
include
#
include
#
include
u
666HZ666
·
2025-02-03 00:01
PTA
数据结构
算法
c++
统计用户输入的数字(0到9)出现的次数,并输出每个数字出现的次数(超详细解析)
1.头文件#
include
#
include
:这行代码引入了标准输入输出库stdio.h,该库提供了输入输出函数,比如scanf()和printf()。
人机yu
·
2025-02-02 23:25
算法
数据结构
学习方法
笔记
数据结构 | C语言实现带头双向循环链表
1.Data.h#pragmaonce#
include
#
include
#
include
typedefintLTDataType;typedefstructLTListNode{structLTListNode
koi li
·
2025-02-02 21:10
数据结构(C语言版)
c语言
链表
数据结构
PAT 甲级 1093
发一下只是因为很喜欢《APT》#
include
usingnamespacestd;longlongintMOD=1000000007;intmain(){longlongintts=0,las=0,ans
金秋飞雪
·
2025-02-02 20:37
算法
c++
数据结构
pat考试
Missing Number CSES 300题
要点用途1LL*(x)将x变为longlong(n*(n+1))>>1sum=1+2+3+…+n#
include
#define_for(i,a,b)for(inti=(a);i>n;longlongsum
打豆豆1234
·
2025-02-02 18:17
CSES
等差数列
求和
遍历
算法
缺失值
CSES-1640 Sum of Two Values
代码#
include
usingnamespacestd;intn,a[200001],m;mapflag;intmain(){ios::sync_with_stdio(0
edward1346
·
2025-02-02 18:46
算法
c++
洛谷,P8706 [蓝桥杯 2020 省 AB1] 解码C语言解法
题目链接:P8706[蓝桥杯2020省AB1]解码-洛谷|计算机科学教育新生态(luogu.com.cn)#
include
#
include
#
include
intmain(){charo[50];scanf
竹溪v
·
2025-02-02 16:09
洛谷入门解题
c语言
洛谷 P8706 [蓝桥杯 2020 省 AB1] 解码
H3el5o2HHHellllloo#
include
usingnamespacestd;intmain(){stringn;cin>>n;getchar();for(inti=0;i='1'&&n[i]
Sonaldo7
·
2025-02-02 16:34
C++
学习
蓝桥杯
c++
c++揭秘2024春晚刘谦老师的魔术,快来看看吧
封面:源码:#
include
#
include
#
include
usingnamespacestd;structCard{intvalue;//用数字代表扑克牌,简化处理};//打印牌堆voidprintDeck
天若有情673
·
2025-02-02 12:09
c++
c++
开发语言
python调用so库 undefind symbol_内嵌Python import时undefined symbol错误及解决 | 学步园
内嵌Pythonimport时undefinedsymbol错误及解决以下代码#
include
#
include
#
include
intmain(intargc,char*argv[])...
weixin_39648432
·
2025-02-02 12:39
python调用so库
undefind
symbol
51LED呼吸灯(完整代码可附赠Proteus仿真)
#
include
sbitLED=P2^0;voidDelay(unsignedintt){while(t--);}voidmain(){unsignedcharTime,i;while(1){for(Time
MissBianca
·
2025-02-02 12:07
51
proteus
51单片机
嵌入式硬件
1057 数零壹
代码#
include
#
include
#
include
usingnamespacestd;intmain(){stringa;getline(cin,a);intlen=a.length();intt[26
Liu_Meihao
·
2025-02-02 10:55
算法
priority_queue的创建_结构体类型(重载小于运算符)c++
)类型,我们有两种方式,一个是用内置类型的方式,在priority_queue,less,把int改成结构体的名字就可以了,但此时就不能用less了,因为less默认是对内置类型使用的,如果less#
include
usingnamespacestd
h^hh
·
2025-02-02 07:26
算法
开发语言
c++
数据结构
C/C++中#define定义常量和const定义常量
C语言和C++中都有相同的两种定义常量的方式先来看看C语言中的定义1.首先是用#define定义#
include
#
include
#definePI3.14intmain(){printf("圆周率为%f
new_dreamsea
·
2025-02-02 05:46
c++
c语言
开发语言
【最大异或结点——Trie,创意】
题目代码#
include
usingnamespacestd;constintN=1e5+10,M=31e5+10;inttr[M][2],idx,e[M];//[maxn*maxb][changes]inta
Kent_J_Truman
·
2025-02-02 04:36
蓝桥杯
算法
【2024蓝桥杯/C++/B组/小球反弹】
目标2:求出Sx,Sy,再根据勾股定理求S代码#
include
//引入所有的标准库头文件usingnamespacestd;//使用
Kent_J_Truman
·
2025-02-02 04:35
蓝桥杯
蓝桥杯
c++
C++练习(六)多态性与虚函数
#
include
usingnamespacestd;classBase{protec
子非愚
·
2025-02-01 23:37
C++练习
NXopen C++面的质心、面积、周长测量 NewFaceProperties NewMassProperties
//1、模板文件添加头文件*#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
CAD二次开发秋实
·
2025-02-01 22:05
NXopen
C++二次开发
c++
开发语言
C++:爬楼梯问题,设有阶台阶需要攀登,每次只能上1阶或2阶,问共有多少种上台阶方案。程序输入为台阶数,输出为上台阶方案总数。
代码如下:#
include
usingnamespacestd;intlou(intx){if(x==1||x==2)returnx;elsereturnlou(x-1)+lou(x-2);}intmain
程序员东min
·
2025-02-01 22:33
c++
java
算法
上一页
3
4
5
6
7
8
9
10
下一页
按字母分类:
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
其他