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
NameSpace
L1-009 N个数求和
#includeusing
namespace
std;intmain(){intn;cin>>n;longlonga[1001],b[1001];charc;longlongzhengshu=0,fenzi
哇哈哈哈蛤
·
2024-02-04 15:30
算法
L1-019 谁先倒
#includeusing
namespace
std;constintN=101;intmain(){inta,b,n;intahe=0,bhe=0;cin>>a>>b>>n;intahan[N],ahua
哇哈哈哈蛤
·
2024-02-04 15:30
算法
c++
数据结构
L1-011 A-B (20分)(测试点过不去原因)
#includeusing
namespace
std;intmain(){stringa,b;getline(cin,a);getline(cin,b);for(inti=0;i
哇哈哈哈蛤
·
2024-02-04 15:29
算法
c++
数据结构
L1-025 正整数A+B(详解)
#includeusing
namespace
std;intmain(){stringd;getline(cin,d);stringa,b,e;for(inti=0;i='0'&&a[i]='0'&&b[
哇哈哈哈蛤
·
2024-02-04 15:27
算法
洛谷p1832 a+b problem
一道完全背包的变形,方案累加题目链接ACcode#includeusing
namespace
std;usingll=longlong;boolcheck(intx){//素数筛doublem=sqrt(
qustflypiggy
·
2024-02-04 14:50
背包专题训练
完全背包
背包dp
动态规划
洛谷 P1466 集合 Subset Sums
题目#include#includeusing
namespace
std;typedeflonglongll;lln,m;lldp[10001000];intmain(){cin>>n;m=(
zailingzhe
·
2024-02-04 14:50
洛谷P1466 集合 Subset Sums
qwq#include#include#include#include#includeusing
namespace
std;constintMAXN=40;intN,M;longlongf[800];intmain
weixin_33812433
·
2024-02-04 14:49
洛谷p1679神奇的四次方数
就够覆盖全部了mmm是背包容量,单个数的四次方是物体体积,每个数的价值是111注意,这一题我们找的是最小的nnn,所以初始化所有为极大数,完全背包板子改成minminminACcode#includeusing
namespace
std
qustflypiggy
·
2024-02-04 14:49
背包专题训练
背包dp
动态规划
完全背包
洛谷p1507 nasa的食物计划
01背包板子题,不同之处在于有两个背包要考虑,所以加一层循环就行了题目链接ACcode#includeusing
namespace
std;constintM=2e4+9;intdp[M][M],c[M]
qustflypiggy
·
2024-02-04 14:19
背包专题训练
01背包
背包dp
动态规划
洛谷p1466集合
01背包的一道变形题目链接代码中已表明注释ACcode#includeusing
namespace
std;usingll=longlong;constintM=1e4+9;lldp[M];intmain
qustflypiggy
·
2024-02-04 14:17
01背包
动态规划
背包问题
背包dp
priority_queue实现错误总结
错误代码展示#pragmaonce#include#includeusing
namespace
std;
namespace
bit{template,classCom=less>classpriority_queue
桐人,奥龙
·
2024-02-04 14:14
c++
算法
开发语言
如何把文件内的数据逐行遍历并选择其中部分需要数据进行输出到新文件
文件里面的其中几行数据放入到excle表格里,因为刚入门,会的不多,只能简单实现一点功能把.gen文件变成.txt文件,具体代码如下:希望大家指点一二:#include#include#includeusing
namespace
std
从删库 到跑路
·
2024-02-04 14:55
算法
c++
C++(迭代法求平方根)
代码如下:1#include2using
namespace
std;3classsquare{4public:5square(floatx,floaty){6this->x=x;7this->y=y;8}
钟居祥瑞
·
2024-02-04 13:22
c++
开发语言
C++指针
分析下面的重载函数#includeusing
namespace
std;voidpfun(char*str){cout()unique_ptr包装一个原始指针,并负责其生命周期。
钟居祥瑞
·
2024-02-04 13:50
C/C++学习
c++
开发语言
计算机软件能力认证考试CCF-202312-1 仓库规划
#自己跑的测试没问题,不知道为啥就是不能满分原理比较绕,就是让数组中一行不断地与其他行进行比较,最终得到各自的索引#includeusing
namespace
std;intmain(){intn;intm
cynicism??
·
2024-02-04 11:55
C++练手
算法
c++
开发语言
2017年苏州大学837复试机试C/C++
代码#includeusing
namespace
std;intmain(){intArr[20]={0};//Arr[0]=0
ORI2333
·
2024-02-04 11:41
C++
c语言
c++
算法
考研
苏州大学
第二章 数据结构(一)(数组模拟链表、队列,栈以及kmp)
一、用数组表示链表1、单链表基础插入和删除操作#include//803区间合并using
namespace
std;constintN=1e4+10;//head表示头结点的下标//e[]存结点的值//
一只程序媛li
·
2024-02-04 09:04
蓝桥准备
数据结构
第二章数据结构(三)(哈希表、stl)
一、哈希表1、拉链法(加一个单链表)#include//哈希//模数一般取质数,距离2的整数次幂尽量远//拉链法有多个槽,每个槽连接一个单链表using
namespace
std;constintN=1e5
一只程序媛li
·
2024-02-04 09:04
蓝桥准备
数据结构
散列表
哈希算法
图(数据结构期末复习3)
图的分类:有向图,无向图连通图,非连通图连通图分为强连通(有向并且形成一个环)和弱连通(有向并且连成一串但是不是一个环)图的存储用邻接矩阵存储有向图或者无向图#includeusing
namespace
std
一只程序媛li
·
2024-02-04 09:34
数据结构复习
数据结构
树(数据结构期末复习8)
二叉树和二叉搜索树的基础操作#includeusing
namespace
std;#defineOK1#defineERROR-1#defineOVERFLOW-2typedefintStatus;typedefintBElemtype
一只程序媛li
·
2024-02-04 09:34
数据结构复习
数据结构
LeetCode第34题之Search for a Range
C++代码:#include#includeusing
namespace
std;classSolution{public:vectorsearchRange(vector&nums,inttarget)
二叉树
·
2024-02-04 09:19
LeetCode算法
leetcode
C++自创棋类小游戏
#include#include#include#includeusing
namespace
std;#defineForij(x)for(inti=1;iN||yy>N)break;if(m[xx][yy
喷火龙廖
·
2024-02-04 09:13
C++小游戏
c++
stm32
开发语言
2022广西师范大学暑期训练赛 E-寄CD?(ST表+二分)
输入1521234512输出111ST表+二分做法#includeusing
namespace
std;typedeflonglongLL;typedefpairPII;constintN=200
Vijurria
·
2024-02-04 09:11
数论
算法
c++
Educational Codeforces Round 122 (Rated for Div. 2) ABC
#include#include#include#include#include#includeusing
namespace
std;intmain(){cin.tie(0);cout
Vijurria
·
2024-02-04 09:41
c++
c++“不允许使用不完整的类型“
示例 先贴上一段简单的c++类构造代码:includeusing
namespace
std;classAddress;//提前声明类classAddress//声明类{private:constchar
师范大学生
·
2024-02-04 08:18
C++
c++
指针
编程语言
备战蓝桥杯---搜索(应用入门)
下面是AC代码:#includeusing
namespace
std;#d
cocoack
·
2024-02-04 08:40
蓝桥杯
深度优先
算法
c++
设计模式第四天|适配器模式 6. 扩展坞
#include#includeusing
namespace
std;classUSB{public:virtualvoidcharge()=0;};classTypeC{public:virtualvoidcharge
啊就赵得柱
·
2024-02-04 08:59
设计模式
适配器模式
android
C++设计模式-里氏替换原则
e.g.1不符合里氏替换原则#includeusing
namespace
std;classMap{};classHashMap:publicMap{};class
vczxh
·
2024-02-04 08:14
c++
c++
设计模式
里氏替换原则
C++:冒泡排序,代码实现
#includeusing
namespace
std;intmain(){intarr[]={10,45,2,65,5,8,4,82,11,51};intnum=sizeof(arr)/sizeof(arr
snow爱
·
2024-02-04 07:33
c++
算法
数据结构
c++:打印9*9乘法表
#includeusing
namespace
std;intmain(){for(inti=1;i<=9;i++){for(intj=1;j<=i;j++){cout<<j<
snow爱
·
2024-02-04 07:02
c++
算法
开发语言
Educational Codeforces Round 158 (Rated for Div. 2)
Problem-A-Codeforces#include#defineendl'\n'#defineintlonglongusing
namespace
std;constintN=55;inta[N];intn
沫刃起
·
2024-02-04 07:02
codeforces
算法
c++
C++:找到三位数中的所有水仙花数
#includeusing
namespace
std;intmain(){intnum=100;do{inta=0;intb=0;intc=0;a=num%10;b=num/10%10;c=num/100
snow爱
·
2024-02-04 07:32
c++
算法
开发语言
c++:敲桌子
特殊数字:1.7的倍数2.十位数上有73.个位数上有7#includeusing
namespace
std;intmain(){for(inti=1;i<=100;i++){if(i/10==7||i%10
snow爱
·
2024-02-04 07:59
c++
算法
开发语言
CodeTON Round 7 (Div. 1 + Div. 2, Rated, Prizes!)
A.JaggedSwaps#include#defineendl'\n'#defineintlonglongusing
namespace
std;constintN=15;inta[N];intn;voidsolve
沫刃起
·
2024-02-04 07:29
codeforces
算法
c++
数据结构
2020年CSP-J认证 CCF非专业级别软件能力认证第一轮真题--完善程序题
#includeusing
namespace
std;intn,i;intmain(){scan
小兔子编程
·
2024-02-04 07:35
2020CSP-J真题解析
CSP初级组真题解析
2020CSP-J第一轮真题
2020CCF认证CSP-J
信息学奥赛CSP初级组真题
CSP初级组真题
CSP真题解析
【.net】缓存操作
usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Web;usingSystem.Web.Caching;
namespace
RisunFactoryLibrary
MoFe1
·
2024-02-04 06:39
.net
缓存
java
顺序表应用3:元素位置互换之移位算法
顺序表应用3:元素位置互换之移位算法Description一个长度为len(1using
namespace
std;intList[1000100];inti,j,k;voidcreatelist(int
南山芽木
·
2024-02-04 05:34
题解
算法
骨牌铺方格
的一个长方形方格中,用一个1×2的骨牌铺满方格,输入n,输出铺放方案的总数.例如n=3时,为2×3方格,骨牌的铺放方案有三种:Input输入包含一个整数n,表示该测试实例的长方形方格的规格是2×n(0using
namespace
std
南山芽木
·
2024-02-04 05:33
题解
算法
c++
数据结构
顺序表应用4:元素位置互换之逆置算法
顺序表应用4:元素位置互换之逆置算法Description一个长度为len(1using
namespace
std;intList[1000100];inti,j,k;voidchange(int*List
南山芽木
·
2024-02-04 05:02
题解
算法
Apache Pulsar——tenants租户、
namespace
命名空间、topic
一、多租户ApachePulsar最初诞生于雅虎,当时就是为了解决雅虎内部各个部门之间数据的协调,所以多租户特性显得至关重用,Pulsar从诞生之日起就考虑到多租户这一特性,并在后续的实现过程中,将其不断的完善。多租户这一特性,使得各个部门之间可以共享同一份数据,不用单独部署独立的系统来操作数据,很好的保证了各部门间数据一致性的问题,同时简化维护成本。在介绍Pulsar多租户之前,先来看一下,正常
小波同学
·
2024-02-04 05:41
【QT系列】tableView
#ifndefDIALOG_H#defineDIALOG_H#include#include#includeQT_BEGIN_
NAMESPACE
namespace
Ui{classDialog;}QT_END_
NAMESPACE
classDialog
橙留香写代码
·
2024-02-04 04:11
QT
C++学习
qt
命令模式
开发语言
Kubernetes----Pod配置容器端口
【原文链接】一、配置Pod的端口配置1.1编写yaml文件编写pod_ports.yaml文件,内容如下,设置port的name和containerPort,如下apiVersion:v1kind:
Namespace
metadata
redrose2100
·
2024-02-04 03:37
Kubernetes
kubernetes
C++ Primer Chapter3 字符串、向量和数组
命名空间的using声明using
namespace
:name;头文
Jacenhu
·
2024-02-04 03:47
【无标题】
思维导图:作业:#include#includeusing
namespace
std;classPer{private:stringname;intage;int*height;intweight;public
睡不醒、、
·
2024-02-04 02:24
c++
C++ Day1
思维导图:作业:#include#includeusing
namespace
std;intmain(){inta=0,A=0,num=0,space=0,other=0;arraystr;array::
睡不醒、、
·
2024-02-04 02:54
c++
算法
开发语言
《Kubernetes网络权威指南》读书笔记 | 汇总
《Kubernetes网络权威指南》读书笔记|网络虚拟化基石:network
namespace
_COCOgsta的博客-CSDN博客2.
热爱编程的通信人
·
2024-02-04 02:43
读书笔记
kubernetes
网络
docker
【Devc++】弹球小游戏1.1
我把弹球小游戏的界面搞好看了上代码:#include#include#includeusing
namespace
std;stringq="o",db="-----",kk[31]={"","______
饼干369
·
2024-02-04 00:15
c++
游戏
c++
开发语言
后端
C++:CSDN云服务器2.0
(水一期)代码:#include#include#include#include#includeusing
namespace
std;MUSICbgMusic;HWNDhWnd=GetConsoleWindow
快乐星空Maker
·
2024-02-04 00:15
普普通通的程序
c++
服务器
开发语言
【模板】二维前缀和
题目:P1060-【模板】二维前缀和-ETOJ(eriktse.com)#include#include#include#include#includeusing
namespace
std;constintN
终相守丶空白
·
2024-02-03 23:51
c++
算法
2023华为OD机试真题-递增字符串(JAVA、Python、C++)
0using
namespace
std;intmain(){strings;cin>>s;if(s.s
huaweiod123
·
2024-02-03 23:49
华为OD机试真题2023
java
c++
python
算法
华为
上一页
25
26
27
28
29
30
31
32
下一页
按字母分类:
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
其他