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
【洛谷】P1219 [USACO1.5]八皇后 Checker Challenge
Acode:#includeusing
namespace
std;intn,a[100],b[100],c[100],d[100],ans;//n,行,列,对角线一,对角线二,结果voidprint()/
gentle coder
·
2024-01-25 00:36
深度优先
算法
c++
学习总结1
#【深基15.习9】验证栈序列##题目描述给出两个序列pushed和poped两个序列,其取值从1到n(n#includeusing
namespace
std;intmain(){intx,y,z,d,k
GGJJM
·
2024-01-25 00:58
学习
算法
数据结构
C++day1
1.思维导图2.提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数要求使用C++风格字符串完成#includeusing
namespace
std;intmain()
snk85k1
·
2024-01-25 00:14
c++
全排列の递归实现[C++实现]
一、有能力最好先读代码(C++)#include#includeusing
namespace
std;voidprint(vectorarr){intSize=arr.size();for(inti=0;
IoOozZzzz
·
2024-01-25 00:37
蓝桥杯
算法竞赛入门
算法
c++
数据结构
单调栈(模板题)(c++题解)
输入格式第一行输入一个n第二行输入n个整数输出格式n行,每行1个数,表示当前数左边第一个比当前数小的数样例样例输入复制534275样例输出复制-13-122数据范围与提示nusing
namespace
std
hb_zhyu
·
2024-01-25 00:35
c++
算法
开发语言
ROS学习笔记10——自定义源文件调用
include/功能包名目录下创建一个头文件记得在.vscode下c_cpp_properties.json的includepath属性中把路径加进去#ifndef_HELLO_H#define_HELLO_H
namespace
hello_ns
Simulink_
·
2024-01-24 23:03
学习
笔记
机器人
ROS
用C语言写一个类似天天酷跑游戏(图形库用easyx)
枚举出障碍物类型#include#include#include#include#include#include"tools.h"#pragmacomment(lib,"Winmm.lib")using
namespace
std
希望美好
·
2024-01-24 22:42
c语言
游戏
c++
给定大小为n的数组a,集合S包含a中所有元素,并且设x是S中的元素,那么y = 2 * x + 1, z = 4 * x都是S中的元素,求小于2^p的S的元素有多少个(mod 1e9 + 7)
题目思路:#includeusing
namespace
std;#defineintlonglong#definepbpush_backconstintmaxn=1e6+5,inf=1e9+5,maxm=
__night_
·
2024-01-24 22:10
codeforces
算法
一棵树初始只有一个结点1,根为1,有q(1e5)次操作:1、选择p结点,在p结点插入一个结点,编号为tot+1,2、选择p结点,使p的子树的所有结点权值都加上x。求q次操作后所有结点的权值(初始为0)
题目#includeusing
namespace
std;#defineintlonglong#definepbpush_backconstintmaxn=1e6+5,inf=1e9+5,maxm=1e6
__night_
·
2024-01-24 22:09
codeforces
算法
数据结构
给定长度为n(1e5)的数组,q次询问(2e5):s,d,k,求a[s] + a[s + d] * 2 + a[s + 2 * d] * 3 + ... + a[s + (k - 1) * d]
题目思路:根号分治,当d*d>n时,直接暴力求;否则利用前缀和求#includeusing
namespace
std;#defineintlonglong#definepbpush_backconstintmaxn
__night_
·
2024-01-24 22:38
codeforces
算法
小奇遐想
小奇遐想小奇望着青天中的悠悠白云,开始了无限的遐想,在它的视野中,恰好有n朵高度不同的白云排成一排,他想从左到右选出四朵白云a,b,c,d,使得h_a#definelllonglongusing
namespace
std
wolf_szh
·
2024-01-24 21:34
小奇遐想
小奇取石子
源码#include#include#include#include#includeusing
namespace
std;constintINF=0x3f3f3f3f;
StaroForgin
·
2024-01-24 21:33
#
状压dp
docker面试题(一)
答案1:Docker利用Linux内核的容器化技术,如命名空间(
namespace
s)和控制(cgroups),来实现应用程序的隔离和封装。
你曾经是少年
·
2024-01-24 21:31
eureka
云原生
蓝桥杯省赛无忧 排序 课件40 冒泡排序
01冒泡排序的思想02冒泡排序的实现03例题讲解#includeusing
namespace
std;voidbubbleSort(intarr[],intn){for(inti=0;iarr[j+1])
暗托涅瓦
·
2024-01-24 21:50
蓝桥杯省赛无忧
蓝桥杯
算法
c++
冒泡排序
蓝桥杯省赛无忧 课件41 选择排序
01选择排序的思想02选择排序的实现03例题讲解#includeusing
namespace
std;voidselectionSort(intarr[],intn){inti,j,min_index;/
暗托涅瓦
·
2024-01-24 21:50
蓝桥杯省赛无忧
排序算法
算法
c++
蓝桥杯
选择排序
蓝桥杯省赛无忧 编程10 大石头的搬运工
#includeusing
namespace
std;//创建一个结构体来保存石头的重量和位置structStone{intweight;intposition;};intmain(){intn;cin>
暗托涅瓦
·
2024-01-24 21:20
蓝桥杯省赛无忧
蓝桥杯
c++
蓝桥杯省赛无忧 编程11 最大数组和
#includeusing
namespace
std;typedeflonglongll;intmain(){intt;cin>>t;while(t--){intn,k;cin>>n>>k;vectora
暗托涅瓦
·
2024-01-24 21:17
蓝桥杯省赛无忧
蓝桥杯
c++
排序
前缀
贪心
dbg.h 模板部分源码 的部分 代码阅读记录
returntrue;#elifdefined(DBG_MACRO_UNIX)returnisatty(fileno(stderr));#elsereturntrue;#endif}structtime{};
namespace
pretty_function
HUANG_XIAOJUN
·
2024-01-24 21:00
c++
基于k8s实现动态弹性伸缩 动态的回滚和滚动更新
构建
namespace
抹香鲸之海
·
2024-01-24 21:29
docker
k8s
harbor
gitlab
Linux运维
Nginx
kubernetes
docker
运维
AtCoder Beginner Contest 335 A-E 题解
代码:#includeusing
namespace
std;intmain(){strings;cin>>s;s[s.size()-1]='4';coutus
超哥聊信奥
·
2024-01-24 20:51
Atcoder
算法
图论
数据结构
学习
洛谷B2092 开关灯 题解
AC代码(不要只看这里啊,虽然我知道你们都喜欢#includeusing
namespace
std;intn;boola[5010];intmain()
一条既有梦想又没有梦想的咸鱼
·
2024-01-24 20:33
算法
c++
洛谷 P1614 爱与愁的心痛
测试用例8314731243#includeusing
namespace
std;intmain(){intn;intm;cin>>n>>m;inta[10000];for(inti=0;i>a[i];}
Sonaldo7
·
2024-01-24 20:02
C++
学习
c++
洛谷 P1567 统计天数
#includeusing
namespace
std;intmain(){intday;cin>>day;inta[10000000];for(inti=0;i>a[i];}intcon
Sonaldo7
·
2024-01-24 20:01
C++
学习
c++
洛谷 字符替换(计蒜客-T1109)
#include#includeusing
namespace
std;intmain(){chara[100];charchange;charchange_to;cin>>a>>change>>change_to
Sonaldo7
·
2024-01-24 20:31
C++
学习
c++
洛谷 分类平均 P5719
#includeusing
namespace
std;intmain(){intn;intk;cin>>n>>k;doubleA[10000]={0};doubleB[10000]={0};inta=0;
Sonaldo7
·
2024-01-24 20:31
C++
学习
c++
洛谷 开关灯 (计蒜客 - T1079)
#include#includeusing
namespace
std;intmain(){intn;//灯intm;//人cin>>n>>m;inta[n];for(inti=1;i<=n;i++){a[
Sonaldo7
·
2024-01-24 20:30
C++
学习
c++
VSCODE 编译C++
先写一个cpp文件#includeusing
namespace
std;intmain(){cout<<"helloworld"<
睿果果
·
2024-01-24 20:22
Ubuntu
基本操作
c++
linux
1308:【例1.5】高精除
C++代码示例如下#include#include#include#includeusing
namespace
std;stringsub(strings,stringst2){vectorA,B,C;for
万事大吉CC
·
2024-01-24 20:47
奥赛一本通
c++
算法
开发语言
洛谷二分题集(3题)
P1102A-B数对AC:#includeusing
namespace
std;using
namespace
std;typedeflonglongLL;LLa[200001];mapm;intmain()
喷火龙廖
·
2024-01-24 20:16
算法
c++
数据结构
C#中,变量前的@符号
string@
namespace
="EnterpriseServerBase.WebService.DynamicWebCalling";字符串前面带上@我就用得多了,代表这个字符串里的一些转义字符可以无需特别处理
左直拳
·
2024-01-24 20:42
.NET
系统性学习vue-vuex
vue-vuex理解vuexvuex工作原理搭建vuex环境案例Vuex的开发者工具使用getters配置项mapState与mapGettersmapActions和mapMutationsvuex模块化+
namespace
aqiu~
·
2024-01-24 20:41
vue
vue.js
前端
第6章 函数
#includeusing
namespace
std;intmul(intn){intsum=1;while(n>1){sum*=n--;}returnsum;}intmain(void){intn;cout
JIHHHH
·
2024-01-24 19:55
第一个C++项目
那么学习起来相对没有学C这么困难了(但愿如此吧),那么就让C++来的更加猛烈一点吧第一个C++项目,还是最熟悉的helloword#define_CRT_SECURE_NO_WARNINGS#includeusing
namespace
std
爱上语文
·
2024-01-24 19:26
c++
蓝桥杯题目解析 --矩形切割
代码(注意其中的注释):#includeusing
namespace
std;intmain(){//请在此输入您的代码inta=2019;intb=324;intans=1;//计数初始值
DaveVV
·
2024-01-24 18:55
蓝桥杯c++
蓝桥杯
算法
数据结构
c++
c语言
核桃的数量---蓝桥杯
思路:题目所代表的意思就是a,b,c这三个必须是核桃数量的因子,即a,b,c三个的最小公倍数#include#includeusing
namespace
std;//intmain(){inta,b,c;
fchampion
·
2024-01-24 18:52
蓝桥杯
职场和发展
顺序栈链栈基本操作及应用-数据结构类C语言
主函数调用文件(main.cpp)三、头文件声明文件(before.h)四、运行环境一、功能函数定义文件(func.cpp)#include#include#include"before.h"using
namespace
std
_慢漫漫慢
·
2024-01-24 18:46
数据结构基本算法代码
c语言
c++
数据结构
链表
算法
AcWing 4658. 质因数个数
首先给出y总的质因数分解的模板:voiddivide(intx){ for(inti=2;i1)coutusing
namespace
st
ros275229
·
2024-01-24 17:04
acwing
算法学习
算法
AcWing
C++ 类构造函数 & 析构函数
这句话是重点拿例子来说话#includeusing
namespace
std;classLine{public:voidset
骑自行车带头盔
·
2024-01-24 17:58
50
c++
开发语言
C++ 拷贝构造函数
三种方法用代码演示#includeusing
namespace
std;classPerson{public:Person(){coutusing
namespace
st
骑自行车带头盔
·
2024-01-24 17:52
50
c++
java
开发语言
C#、输入一个月份,判断是否是闰年。
usingSystem;
namespace
stars{classProgram{staticvoidMain(string[]args){//for循环知识在控制台循环输出。for(
妙·缘
·
2024-01-24 16:17
C#的一些源代码
c#
Qt读取txt及csv文件
.h#ifndefWIDGET_H#defineWIDGET_H#include#include#include#include#include
namespace
Ui{classWidget;}classWidget
colorful_stars
·
2024-01-24 16:02
Qt
qt
开发语言
【程序】给C++的cout和fstream添加Unicode支持,使其能向屏幕或文件输入/输出wchar_t字符串
【程序】#include#include#include#defineRDBUF_LEN200using
namespace
std;ostream&operator>(istream&is,wstring
巨大八爪鱼
·
2024-01-24 15:39
Win32
C++
win32
c语言
Docker 基本管理
目录Docker概述容器的特点容器与虚拟机的区别Docker与虚拟机的区别容器在内核中支持2种重要技术Linux
Namespace
的6大类型Docker核心镜像容器仓库Docker安装Docker镜像操作
袁慕求玲
·
2024-01-24 15:02
docker
容器
运维
寒假刷题第11天
#include#includeusing
namespace
std;constintN=1e5+10;inta[N];intn;intmain(){cin>>n;for(inti=0;i>x
xp_xht123
·
2024-01-24 15:14
寒假刷题
数据结构
寒假刷题第12天
PTA甲级1075PATJudge结构体排序#include#include#include#include#includeusing
namespace
std;constintN=1e5+10,M=1e4
xp_xht123
·
2024-01-24 15:14
算法
c++
数据结构
寒假刷题13天
PTA甲级1082ReadNumberinChinese字符串处理,恶心#include#includeusing
namespace
std;stringnum[10]={"ling","yi","er"
xp_xht123
·
2024-01-24 15:12
寒假刷题
c++
算法
开发语言
C++ 11 多线程库初步学习
使用时需要#include头文件;#include#includeusing
namespace
std;voidtproc(inti){cout<
bcbobo21cn
·
2024-01-24 15:09
VC++
thread
C++11
C++线程学习1,线程创建的多种方式
1,直接创建一个线程#include#includeusing
namespace
std;voidMythread(){ for(inti=0;i#includeusing
namespace
std;boolis_run
山海不朽
·
2024-01-24 15:38
C++
c++
开发语言
VC++创建线程学习1
//#include"stdafx.h"#include#include#includeusing
namespace
std;//DWORDWINAPIThreadFuncFirst(LPVOIDparam
bcbobo21cn
·
2024-01-24 15:07
VC++
c++
开发语言
_beginthread
线程
最长递增序列
代码:#include#includeusing
namespace
std;intmain(){intn,maxlen=0,j;cin>>n;vectorarr(n);inti;for(i=0
fchampion
·
2024-01-24 14:22
蓝桥杯每年真题
算法
数据结构
c++
上一页
44
45
46
47
48
49
50
51
下一页
按字母分类:
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
其他