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
【C++】猜数字游戏
//引入必要的头文件#include#include#includeusing
namespace
std;//主函数入口intmain(){//初始化随机数种子,使用当前时间作为种子值srand((unsignedint
执沐
·
2024-02-08 14:32
c++
算法
开发语言
C++入门学习(二十五)do-while循环
#include#includeusing
namespace
std;intmain()
执沐
·
2024-02-08 14:31
C++入门
算法
数据结构
P1051 [NOIP2005 提高组] 谁拿了最多奖学金
[NOIP2005提高组]谁拿了最多奖学金-洛谷|计算机科学教育新生态(luogu.com.cn)最近一直在学c++,想着水一道题爽爽结果就出问题了代码如下:#include#includeusing
namespace
std
Fool256353
·
2024-02-08 14:55
c++
洛谷P3372 线段树模板
线段树讲的很详细的博客:链接线段树讲的很详细的视频:链接#includeusing
namespace
std;typedeflonglongll;constintmaxn=100005;lldat[maxn
Konjacer
·
2024-02-08 14:55
SDNUOJ
c++
线段树模板
P3372 【模板】线段树 1
网址如下:P3372【模板】线段树1-洛谷|计算机科学教育新生态(luogu.com.cn)题如其名昨天做了一道开关(也是线段树的)想着今天复习一下代码如下:#includeusing
namespace
std
Fool256353
·
2024-02-08 14:54
算法
c++
图论
P8647 [蓝桥杯 2017 省 AB] 分巧克力--2024蓝桥杯冲刺省一
就是假如答案为ans,那么所有#defineintlonglong//(有超时风险)#definePIIpair#defineendl'\n'#defineLL__int128using
namespace
std
一只蓝色小鲨鱼
·
2024-02-08 14:47
二分
蓝桥杯
职场和发展
数据结构
c++
算法
P8597 [蓝桥杯 2013 省 B] 翻硬币--2024蓝桥杯冲刺省一
#include#defineintlonglong//(有超时风险)#definePIIpair#defineendl'\n'#defineLL__int128using
namespace
std;constintN
一只蓝色小鲨鱼
·
2024-02-08 14:44
蓝桥杯
职场和发展
c++
算法
day7(2024/2/8)
mainui.h(第二个界面)#ifndefMAINUI_H#defineMAINUI_H#include
namespace
Ui{classMainUi;}classMainUi:publicQWidget
明渐
·
2024-02-08 12:29
命令模式
B2075 幂的末尾(洛谷)
输入输出样例输入#123输出#1008输入#272011输出#2743Code:C++:#includeusing
namespace
std;intmain(){longlonga,b,s=1;c
Hello,world!*10
·
2024-02-08 12:59
C++
算法
C++
洛谷
B2073 求小数的某一位(洛谷)
0using
namespace
std;intmain(){inta,b,n;cin>>a>>b>>n;for(inti=1;i<=n;i++){a%=b;a*=10;}a/=b;cout<
Hello,world!*10
·
2024-02-08 12:28
C++
算法
数据结构
C++
洛谷
B2072 分苹果
输入输出样例输入#18输出#136Code:C++:#includeusing
namespace
std;intmain(){intn,ans=0;cin>>n;for(inti=1;
Hello,world!*10
·
2024-02-08 12:56
C++
算法
c++
数据结构
中国电子学会2021年03月真题C语言软件编程等级考试一级(含解析答案)
样例输入*样例输出*************#includeusing
namespace
std;intmain
CC编创
·
2024-02-08 12:04
中国电子学会历届真题C语言
c语言
算法
图论
数据结构
c++
青少年编程
中国电子学会2021年09月真题C语言软件编程等级考试一级(含解析答案)
(2#includeusing
namespace
std;intmain(){inti,
CC编创
·
2024-02-08 12:04
中国电子学会历届真题C语言
c语言
算法
c++
数据结构
青少年编程
C# 字符串 计算相似度的算法,用于搜索排序推荐?
//程序来源:HandsonsoftwareArchitecturewithc#8and.netcore3usingSystem;
namespace
SmartSearch{classProgram{staticstring
zxcvb036
·
2024-02-08 11:26
C#知识点
Docker快速入门
Docker利用Linux核心中的资源分离机制,例如cgroups,以及Linux核心名字空间(
namespace
s),来创建独立的容器(containers)。这可以
janlle
·
2024-02-08 11:07
C#,栅栏油漆算法(Painting Fence Algorithm)的源代码
计算结果:2栅栏油漆算法的源程序usingSystem;
namespace
Legalsoft.Truffer.Algorithm{publicstaticpartialclassNumber_Sequence
深度混淆
·
2024-02-08 11:22
C#算法演义
Algorithm
Recipes
c#
算法
C#,佩尔数(Pell Number)的算法与源代码
2源程序usingSystem;
namespace
Legalsoft.Truffer.Algorithm{publicstaticpartia
深度混淆
·
2024-02-08 11:22
C#算法演义
Algorithm
Recipes
c#
算法
佩尔数
Pell
Number
输出超级玛丽2_题解
代码展示#includeusing
namespace
std;intmain(){printf("********\n");printf("************\n");printf("####...
小新不想起床
·
2024-02-08 11:17
dubbo
扑克牌游戏_题解
代码展示#includeusing
namespace
std;constintN=109;b
小新不想起床
·
2024-02-08 11:47
游戏
算法
数据结构
贪心_限制数字的范围的取模的技巧_偶数的性质_1883_C. Raspberries
#includeusing
namespace
std;constintN=2e5+10;inta[N];voidsolve(){intn,k;cin>>n>>k;for(inti=0;i>a[i];intans
三冬四夏会不会有点漫长
·
2024-02-08 10:58
#
CF
900-1000
c语言
开发语言
KEYENCE Programming Contest 2021 A - Two Sequences 2(思维)
题意:解法:注意到i必须满足using
namespace
std;#defineintlonglongconstintmaxm=2e5+5;intans[maxm];inta[maxm];intb[maxm
live4m
·
2024-02-08 10:18
18届科大讯飞杯
18届科大讯飞杯太懒了,一直放着没怎么补待D.最大字符集题意:解法:思维构造题把n=1和n=2的时候特判掉其他情况下都可以输出n-1种00010011001110…code:#includeusing
namespace
std
live4m
·
2024-02-08 10:48
【数据结构练习】平均数【二分答案】【树状数组】
问题就变成了前缀和中的逆序对问题codecodecode#include#include#include#include#definelllonglong#definelowbit(x)x&-xusing
namespace
std
VL——MOESR
·
2024-02-08 10:09
题解
#
树状数组
二分
数据结构
算法
c++
题解
二分答案
C++11异步任务轮子实现(header-only)
满足功能异步任务超时控制get接口同步任务计时lambda回调任务重启使用#include"async_callback.h"#include#includeusing
namespace
std;intmain
Y. F. Zhang
·
2024-02-08 09:25
C++
多线程编程
数据结构
c++
开发语言
算法
作业2.7_2
#includeusing
namespace
std;boolsolve(int&w){intw1,d1,w2,d2;boolb1=1,b2=1;scanf("%d%d%d%d",&w1,&d1,&w2,
xiyuping24
·
2024-02-08 08:38
题解
算法
程序设计
字符串
nlp
动态规划
作业2.7_3(给UVA548 树 Tree单独一个帖子)
代码:(输入函数很香建议保留)我不理解他是绿的但TheBlocksProblem是黄的#includeusing
namespace
std;intin[100010],post[100010],l[100010
xiyuping24
·
2024-02-08 08:38
题解
dfs
算法
leetcode
指针
c++
C++艺术字头文件:ArtText.h
#ifndefART_TEXT_H#include#includeusing
namespace
std;HWNDhWnd=GetConsoleWindow();#defineArt_Windows(bool
快乐星空Maker
·
2024-02-08 08:51
#C++打包头文件
c++
开发语言
大作业【C++通讯录管理系统】【含全部代码+注释】
简介主要功能:添加联系人显示联系人删除联系人查找联系人修改联系人清空联系人退出通讯录实现功能部分演示截屏全部代码【含详细注释】#includeusing
namespace
std;#include#defineMAX1000
嗯哈!
·
2024-02-08 07:28
c++
开发语言
CSP-202206-1-归一化处理
CSP-202206-1-归一化处理知识点总结设置浮点数输出位数包含头文件#include设置输出位数cout#include#include//设置浮点数输出位数using
namespace
std;intmain
LOST P
·
2024-02-08 05:50
算法
c++
递归的应用
#includeusing
namespace
std;intFunc(intn){if(n==0)return1;elsereturnFunc(n-1)*n;}intmain(){intn;cin>>n;
代码续发
·
2024-02-08 05:58
小白进阶
算法
c++
数据结构
简单排序方法
用简单排序方式将数组按由小到大的顺序序列一、冒泡排序相邻两数之间的比较#includeusing
namespace
std;intmain(){intnum[5]={3,1,7,5,2};inttemp=
代码续发
·
2024-02-08 05:28
小白进阶
算法
散列(hash)存储的应用
判断一整数序列中的数是否另一整数序列中出现过#includeusing
namespace
std;boolhashTable[10000]={false};intmain(){intn1,n2,x;cin
代码续发
·
2024-02-08 05:28
小白进阶
哈希算法
贪心算法的应用
考虑最大利润输入:种类数、需求量、各种类的库存量、各种类的总价输出:最大利润#include#include//调用sort排序using
namespace
std;structmooncake{doublestore
代码续发
·
2024-02-08 05:57
小白进阶
贪心算法
算法
n的阶乘(函数)
数据范围1≤n≤10输入样例:3输出样例:6#includeusing
namespace
std;intfact(intn){intres=1;for(inti=1;i>n;intc=fact(n)
Mbigmouse
·
2024-02-08 04:40
算法
c++
数据结构
数论 之 约数篇
与上面的试除法求质数很相似a|b的意思是,b%a=0如果x|n那么一定有(n/x)|n,所以,著需要求一个,另一个直接能得到核心代码:for(inti=1;i#include#includeusing
namespace
std
海风许愿
·
2024-02-08 04:21
Acm算法
算法
数据结构
c++
开发语言
C# 设计模式 结构型模式 之 桥接模式
总结利用桥接做到实现类与接口定义类解耦,互不依赖,独立存在下面示例实现实现类与接口定义类解耦:
namespace
桥接模式{internalclas
持久的胜利
·
2024-02-08 03:55
C#设计思想
设计模式
桥接模式
.net
c#
2. 入门并实践STL——set篇
#includeusing
namespace
std;set的定义单独定义一个set:setname;set数组的定义:setnameArray[size];访问元素除开vector和string之外的stl
zju_dream
·
2024-02-08 03:57
C++的头文件<climits> 基本的数据类型的位数、大小
下边列出一些常用的符号常量:char的最大值、最小值#include#includeusing
namespace
std;intmain(){cout#includeusing
namespace
std;intmain
11来了
·
2024-02-08 02:17
c++
等差数列_1878_C. Vasilije in Cacak
#includeusing
namespace
std;typedeflonglongLL;voidsolve(){LLn,k,x;cin>>n>>k>>x;LLmin_sum=(1+k)*k/2;LLmax_sum
三冬四夏会不会有点漫长
·
2024-02-08 02:12
#
CF
900-1000
c语言
算法
开发语言
回文串_结论_字符串模拟_跳出循环_码力_1883_B. Chemistry
#includeusing
namespace
std;constintN=1e5+10;chara[N];intcnt[30];voidsolve(){intn,k;cin>>n>>k;for(inti=
三冬四夏会不会有点漫长
·
2024-02-08 02:11
#
CF
900-1000
算法
数据结构
图论
极简的输入_求最小值的函数_求和的函数_矩阵_1879_B. Chips on the Board
#includeusing
namespace
std;typedeflonglongLL;voidsolve(){intn;cin>>n;vectora(n),b(n);for(auto&x:a)cin>
三冬四夏会不会有点漫长
·
2024-02-08 02:11
#
CF
900-1000
矩阵
算法
c++
pair的排序_贪心_什么时候结束循环_边界情况的考虑_1876_A. Helmets in Night Light
#includeusing
namespace
std;typedeflonglongLL;constintN=1e5+10;inta[N],b[N];voidsolve(){intn,p;cin>>n>>
三冬四夏会不会有点漫长
·
2024-02-08 02:10
#
CF
900-1000
算法
数据结构
C++学习笔记——typedef和using
C++11中扩展了using的使用场景(C++11之前using主要用来引入命名空间名字如:using
namespace
翟羽嚄
·
2024-02-08 01:27
C++
c++
学习
笔记
使用Csvhelper读取CSV文件某一行某一列数据
usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingCsvHelper;usingCsvHelper.Configuration;
namespace
Co
Mr_zhuocheng
·
2024-02-08 00:28
C#
CSV
某行
倒计时61天
M-智乃的36倍数(normalversion)_2024牛客寒假算法基础集训营3(nowcoder.com)//非ac代码,超时了,54.17/100#includeusing
namespace
std
算法怎么那么难啊
·
2024-02-07 23:52
c++
航电oj:盐水的故事
这里就有VULD都可以是double类型的坑用整型变量就算注意到了不满一滴用一滴计算也不会正确#知识点细心#代码#include#include#include#include#includeusing
namespace
std
不玩游戏的休比
·
2024-02-07 23:19
细心题
训练赛-1
算法
组合问题1
个数,返回k个数组合输入n=4,k=2输出[1,2],[1,3],[1,4],[2,3],[2,4],[3,4]#include#include#include#include#includeusing
namespace
std
凝凉
·
2024-02-07 23:49
力扣
leetcode
求n的阶层
#includeusing
namespace
std;intmain(){ intn,i,j,l,sum,c; cin>>n; //计算n!
凝凉
·
2024-02-07 23:19
复习
c++
拓扑学
后缀表达式
#include#include#includeusing
namespace
std;intmain(){intn,m,i;longlongs=0;//值的范围最大可以为10的9次方,当值相加时,超出int
凝凉
·
2024-02-07 23:19
蓝桥杯
蓝桥杯
c++
油猴js 获取替换网页链接并重定向
代码//==UserScript==//@nameNewUserscript//@
namespace
http://tampermonkey.net///@version2024-02-06//@descriptiontrytotakeovertheworld
默默提升实验室
·
2024-02-07 23:59
JavaScript
javascript
上一页
18
19
20
21
22
23
24
25
下一页
按字母分类:
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
其他