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
[题解-华为机试] 购物单
购物单解题思路较为抽象的01背包问题,#
include
#
include
usingnamespacestd;intmain(){intN,m;cin>>N>>m;intvalue,priority,q;inti
初梦语雪
·
2024-08-30 18:47
算法题
#
动态规划
华为
算法
动态规划 - 分组背包
eg:第i组一个物品都不选f[i-1][j],第i组选第k个物品f[i-1][j-v[i][k]]+w[i][k]样例输入:3521224134145样例输出:8//动态规划-分组背包#
include
usingnamespacestd
我想进大厂
·
2024-08-30 17:43
动态规划
算法
代码随想录训练营Day 67|卡码网110.字符串接龙、105.有向图的完全可达性、106.岛屿的周长
1.字符串接龙110.字符串接龙|代码随想录代码:#
include
#
include
#
include
#
include
#
include
#
include
usingnamespacestd;intmain(){
好名字可以让你的朋友更容易记住你498
·
2024-08-30 17:42
一刷代码随想录
算法
c++
数据结构
深度优先
图论
sg博弈
#
include
usingnamespacestd;#defineintlonglong#definell__int128_t#defineararray#definearrarrayintn,m,k,
麦克风的纹路
·
2024-08-30 17:12
算法
memset和指针new一起使用时请小心
利用new的方法获得指定长度的动态分配内存的数组,此时memset不适用,那是因为sizeof(A)不是数组尺寸,而仅仅是该元素的size如int4;#
include
usingnamespacestd;
小江村儿的文杰
·
2024-08-30 17:41
C++
算法训练营|图论第7天 prim算法 kruskal算法
题目:prim算法题目链接:53.寻宝(第七期模拟笔试)(kamacoder.com)代码:#
include
#
include
#
include
usingnamespacestd;intmain(){intv
人间温柔观察者
·
2024-08-30 17:40
算法
图论
数据结构
代码随想录算法训练营第五十五天 | 图论part05
//#
include
#
include
usingnamespacestd;voidinit(vector&father){for(inti=0;
sagen aller
·
2024-08-30 17:40
算法
图论
算法训练营|图论第6天 108.冗余连接 109.冗余连接2
题目:108.冗余连接题目链接:108.冗余连接(kamacoder.com)代码:#
include
#
include
#
include
usingnamespacestd;vectorfather;intfind
人间温柔观察者
·
2024-08-30 16:08
算法
图论
数据结构
如果一个函数的输入是一个类对象的指针,函数给指针赋值后退出,调用该函数的main函数中是否能获取到新的类对象
示例代码cpp#
include
classMyClass{public:intvalue;MyCla
2401_86127755
·
2024-08-30 16:03
c++
torch1.7.0之后 c++ 丢弃了<THC/THC.h> THCState的修改
//#
include
//"torch"库从1.11.0版本开始,就不再支持使"THC/THC.h"头文件了//https://www.coder.work/article/7897377//替换为下面两个
智维探境
·
2024-08-30 15:30
c++
pytorch
代码随想录算法训练营第五十三天 | 图论part04
#
include
#
include
#
include
#
include
#
include
#
include
usingnamespacestd;intmain(){intn;stringb
sagen aller
·
2024-08-30 12:10
算法
图论
深度优先
pat 自测-5 Shuffling Machine
报错的问题:忽略scanf的返回值的问题:第一种:可能是确实是输出不符合规定,在做洗牌的题目中就遇到了格式不正确的问题;//第二:怎么解决scanf的问题:if(scanf("%d",&a)){};#
include
取名太难保护头发
·
2024-08-30 12:09
【自用14.19】C++俄罗斯方块
该系列文章会根据项目的编写步骤来出由于设备问题,暂时出的代码是未进行运行检验的,后期会补上运行后的版本设计消除功能-check函数实现#
include
//C语言形式的输入输出#
include
//图形库的头文件
.远_
·
2024-08-30 11:01
Pro
学习笔记
C++
c++
java
算法
数据结构——双向链表
头文件#ifndef__DOULIST_H__#define__DOULIST_H__#
include
#
include
/*存放数据类型*/typedefintDataType;/*存放节点类型*/typedefstructnode
xxpro
·
2024-08-30 11:59
数据结构
链表
用C++编写一个简单的服务端和客户端
1.首先执行roscdbeginner_tutorials命令,然后创建src/add_two_ints_server.cpp服务端源码,内容如下:#
include
"ros/ros.h"#
include
"beginner_tutorials
stxinu
·
2024-08-30 10:25
ROS
linux
ubuntu
机器人
ROS
学习记录第二十五天
wait函数的原型如下:#
include
#
include
pid_twait(int*status);1.status参数是一个指针,用于存放子进程的退出状态信息。
喵了d喵
·
2024-08-30 06:58
学习
linux
c语言
Leetcode 219. 存在重复元素
nums=[1,2,3,1],k=3输出:true示例2:输入:nums=[1,0,1,1],k=1输出:true示例3:输入:nums=[1,2,3,1,2,3],k=2输出:falseC++解法#
include
LonnieQ
·
2024-08-30 04:24
突破编程_C++_设计模式(组合模式)
#
include
#
include
#
include
//抽象构件角色:文件系统对象classFileSystemObject{public:virtualvoidadd(FileSystemObject*)
Qpeterqiufengyi
·
2024-08-30 04:16
组合模式
【生命之树】
题目思路求联通区域中的最大和值代码#
include
usingnamespacestd;constintN=1e5+10,M=Nb{e[idx]=b,ne[idx]=h[a],h[a]=idx++;}intn
Kent_J_Truman
·
2024-08-30 03:41
蓝桥杯
算法
爆int
深度优先
算法
图论
C语言程序设计-扫雷游戏
扫雷游戏game.h#pragmaonce#
include
#
include
#
include
#defineROW9#defineCOL9#defineROWSROW+2#defineCOLSCOL+2#defineEASY_COUNT10voidInitBoard
元气代码鼠
·
2024-08-30 03:39
游戏
我的创作纪念日
成就#
include
usingnamespacestd;multisets;inta,b,c;intmain(){cin>>a>>b>>c;while(a--)s.insert("a");while(b
浚浚的二师兄
·
2024-08-30 03:39
纪念
Is breakfast important?
Breakfasthaslongbeenhailedasthemostimportantmealoftheday,andovertime,itspurportedbenefitshaveexpandedto
include
weightcontrol.Butitturnsouteatingbre
俗世尘沙
·
2024-08-30 03:31
2020-03-06查找数组中两个相差最小的两个数的差(快速排序)
#
include
#
include
usingnamespacestd;voidquickSort(int*a,intstart,intEnd);intresult(intarr[],intlen);intmain
喵喵不吃鱼哦
·
2024-08-30 01:10
C语言选择结构switch
#
include
#
include
intmain(){intday=0;scanf("%d",
花开至夏
·
2024-08-30 00:50
C语言
学会C语言
c语言
开发语言
C语言输入年月判断是否为闰年且本月的天数以及为何季节?
(3-5月春,6-8月夏,9-11月秋,12-2月冬)C语言具体代码如下:#
include
voidmain(){inta,b;printf(“请输入年份:\n”);scanf("%d",&a);printf
TongMingTse
·
2024-08-30 00:47
c语言
switch
程序设计
c语言利用switch多路开关制作输入月份判断季节的程序
breakcase1:case2:casen:语句块;break;default:语句块;break;}这里要制作的程序是输入月份,输出是什么季节,最后输出“我在这里等你回来”,适合亲密的人表达相思之意代码如下#
include
intmain
冰暮流星
·
2024-08-30 00:47
c语言
c语言
开发语言
C 语言通用MySQL 功能增删查改功能.
可以查考:C语言连接MySQL数据库项目要求:1、完成MySQL数据库增删改查通用功能封装2、编辑makefile文件实现项目动态更新和快速编译项目结构:common_mysql.h通用数据库基础功能#
include
在奋斗的大道
·
2024-08-29 23:44
我的嵌入式成长之路
mysql
数据库
库函数的介绍和使用
#
include
"stdio.h"intmain(){printf("hehe");return0;}二:scanf:格式化输入函数。
2301_80176093
·
2024-08-29 22:08
c语言
算法
数据结构
c++
51单片机-K1和K2按键控制LED移位
时间:2024.8.29作者:Whappy目的:学习51单片机代码:#
include
#
include
"intrins.h"voidDelay1ms(unsignedintxms)//@11.0592MHz
Whappy001
·
2024-08-29 22:05
51单片机
嵌入式硬件
单片机
自己所的游戏(5.6)
1:0)#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
wzh20121212
·
2024-08-29 21:00
游戏
从键盘输入任意正整数,判断该数是否是回文数。所谓回文数就是从左到右读这个数与从右到左读这个数是一样的。例如12321、1221都是回文数。
输入测试案例的个数n第一个测试值第二个测试值.......第n个测试值输出各个测试值是否是回文数,是,就输出Yes,不是,就输出No*/#
include
#
include
#
include
intmain(void
vsropy
·
2024-08-29 21:29
c++算法题
算法
c++
数据结构
关于求数组中两部分是否相等问题可以考虑前缀和的思路
还要注意flag[0]=1不能漏,不然就都是yes了*/#
include
usingnamespacestd;#definelllonglongconstintmaxn=2e5;constintmod=1e6
shadowcase
·
2024-08-29 20:26
算法
c++
实验16:定时器中断实验
无硬件图,用到D1灯代码main.c#
include
typedefunsignedintu16;typedefunsignedcharu8;sbitLED1=P2^0;voiddelay_10us(u16n
卧龙院士
·
2024-08-29 20:23
stm单片机专栏
单片机
嵌入式硬件
定时器中断
4.2 python获取单元格的属性
属性和get_adress()函数–获取单元格区域的地址表达式.adress:用于获取单元格区域的绝对引用地址;表达式.get_adress(row_absolute,column_absolute,
include
_sheetname
luckyflyyy
·
2024-08-29 19:12
PYTHON办公自动化核心模块
python
开发语言
excel
数据分析
笔记
matlab 与VS 混合编程
在matlab中添加vs程序时,vs中可能依赖一些库,比如opnecv,这时在用mex编译时遇到找不到头文件;需要向matlab中添加vs里包含的头文件
include
和lib;有两种解决方法:第一,添加到
feiyang2010jin
·
2024-08-29 16:27
matlab
NCA9555/PCA9555代码 通用总线IO扩展器芯片驱动
nca9555.h**Createdon:2021年11月11日*Author:lhsmd*/#ifndefUSER_APP_NCA9555_H_#defineUSER_APP_NCA9555_H_#
include
"em_gpio.h
all of the time
·
2024-08-29 14:41
芯片模块驱动
【C/C++】C语言字符串数组排序问题
如果返回值等于0,则表示两个字符串相等;如果返回值小于0,则表示第一个字符串比第二个字符串小;下面是一个示例代码,对字符串数组进行排序:#
include
#
include
intmain(){charstrings
蔚蓝星辰mic
·
2024-08-29 14:40
C/C++
c语言
c++
开发语言
程序设计
Policy of privacy 隐私协议 2018-12-19
Thedatawecollectdependsonthecontextofyourinteractionswithus,thechoicesyoumake,includingyourprivacysettings,andtheproductsandfeaturesyouuse.Thedatawecollectcan
include
SDK
Codeaholic
·
2024-08-29 12:39
c++字符数组-判断字符串是否为回文
样例输入1abcdedcba输出1yes#
include
usingnamespacestd;constintn=100;intmain(){chars[n];inti=
上两天休五天
·
2024-08-29 11:55
c++
算法
c++
数据结构
自己做的游戏(5.3)
1:0)#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
wzh20121212
·
2024-08-29 09:45
游戏
自己做的游戏(5.4)
1:0)#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
wzh20121212
·
2024-08-29 09:45
游戏
自己做的游戏(5.5)
1:0)#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
wzh20121212
·
2024-08-29 09:45
游戏
自己做的游戏(5.1)
1:0)#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
wzh20121212
·
2024-08-29 09:15
游戏
自己做的游戏(5.2)
1:0)#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
include
#
wzh20121212
·
2024-08-29 09:15
游戏
ubuntu 安装opencv(3.4.16)
查看版本,终端opencv_version卸载sudoapt-getremovelibopencv-devsudoapt-getautoremovesudorm-rf/usr/local/
include
江河地笑
·
2024-08-29 08:08
ubuntu
opencv
linux
C++ 文件操作
#
include
#
include
usingnamespacestd;voidtest(){//创建对象流ofstreamofs;//指定打开
JianminZheng
·
2024-08-29 08:34
C++学习笔记
c++
开发语言
CDN原理
做前端缓存简单的CDN的搭建:1、CDN的工作原理:当外网访问内网域名的时候,外网先经过本地的dns查询,然后dns向内网搭建的dns发出申请,内网dns读取配置文件named.conf中包含IP列表的
include
SkTj
·
2024-08-29 04:39
代码随想录day57 prim算法精讲 kruskal算法精讲
代码随想录day57prim算法精讲kruskal算法精讲卡码网:53.寻宝代码随想录#
include
#
include
#
include
usingnamespacestd;intmain(){intv,e
咸鱼的自我变强之路
·
2024-08-29 04:08
代码随想录_刷题
算法
IO的多路复用
intfd,fd_set*set);3、通知内核开始监测select4、内核返回的结果(两个结果,1、是那种类型得文件),做对应得操作(对IO读、写操作)1.2、函数接口(1)select()函数接口#
include
就这样很好880
·
2024-08-29 04:04
linux
服务器
运维
tcp/ip
进程
educoder算法设计与分析 实验六 分支限界法拓展
实验六分支限界法拓展第1关:装载问题(FIFO优先队列法)第2关:装载问题(最优队列法)第1关:装载问题(FIFO优先队列法)//装载问题队列式分支限界法求解#
include
"Queue.h"#
include
usingnamespacestd
xingcheng--dp
·
2024-08-29 02:54
笔记
算法
上一页
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
其他