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
cout
【洛谷题解】P8627 [蓝桥杯 2015 省 A] 饮料换购
涉及知识点:换购题意:分析:一直换购直至瓶盖数usingnamespacestd;intmain(){inta,sum=0,ans=0;ios::sync_with_stdio(false);//加快cin,
cout
cin
杨智123
·
2024-02-20 10:23
蓝桥杯
算法
职场和发展
Codeforces Round 925 (Div. 3)
Dashboard-CodeforcesRound925(Div.3)-CodeforcesA.RecoveringaSmallString直接模拟#include#defineIOSios::sync_with_stdio(0);cin.tie(0);
cout
.tie
ros275229
·
2024-02-20 07:44
算法学习
CF
算法
codeforces
C++重新入门-基本输入输出
以下是这些头文件的简要介绍::提供了用于控制台输入输出的基本功能,如std::
cout
、std::cin。包含了标准流对象st
sprite_雪碧
·
2024-02-20 07:14
c++
算法
开发语言
掘根宝典之C++包含对象的类,私有继承,保护继承,三大继承方式总结
一个类里面的类成员之一是个类对象我们来看个例子#includeusingnamespacestd;classAA{private:inta_;public:AA(inta):a_(a){}voidA(){
cout
usingnamespacestd
掘根
·
2024-02-20 07:44
c++
c++
算法
开发语言
《白话C++》第10章 STL和boost,Page84 shared_ptr示例使用,容器中的指针
include#include#include#include//STL的智能指针#includeusingnamespacestd;structBigS{intdata[100];~BigS(){std::
cout
BigSPtr
yanzhenxi
·
2024-02-20 06:25
《白话C++》智能指针专辑
《白话C++》学习
《白话C++》第10章
STL和boost
c++
开发语言
牛客周赛33
利用c/c++的特性自动忽略空格#includeusingnamespacestd;intmain(){stringa,b;cin>>a>>b;
cout
usingnamespacestd;intn,x,
fchampion
·
2024-02-20 06:54
牛客赛事
c++
算法
开发语言
全排列----关于next_permutation()/prev_permutation() 函数的用法
它按照字典序对序列进行重新排序,如果存在下一个排列,则将当前序列更改为下一个排列,并返回true;如果当前序列已经是最后一个排序,则将序列更改为第一个排列,并返回false.vertornums={1,2,3};
cout
nums2
下雪了 ~
·
2024-02-20 05:03
c++
算法
排序——sort的用法
5,1,3,9,11};sort(v.begin(),v.end());//默认升序for(inti=1;iv;}intmain(){ios::sync_with_stdio(0),cin.tie(0),
cout
.tie
下雪了 ~
·
2024-02-20 05:03
c++
开发语言
算法
C++程序设计(一) [cin,
cout
加速,基本数据类型,保留浮点数]
程序基本概念1.常量:执行过程中不可改变的量(constint…)2.变量:执行过程中可以改变的量(inta,longlongb…)3.关键字:不能用作程序中的标识符(变量名不能为关键字)基本数据类型int:整数类型,占用4字节,范围:−231∼231−1≈∣2.1×109∣-2^{31}\sim2^{31}-1\approx\left|2.1\times10^{9}\right|−231∼231
Xeovei
·
2024-02-20 04:09
初级算法
c++
开发语言
算法
UDP服务端demo
#include#includeusingnamespacestd;//导入依赖的库#pragmacomment(lib,"ws2_32.lib")intmain(){
cout
0){//接收数据成功,打印接受的数据
Eula-L
·
2024-02-20 04:05
学习
算法
queue的用法
定义queueq;//定义一个整型队列访问//a.front()-访问队头元素,a.back()-访问队尾元素
cout
#include//调用queue头文件usingnamespacestd;intmain
代码续发
·
2024-02-20 04:00
小白进阶
算法
stack的用法
获得队首元素3.empty():判断是否为空4.size():返回队内元素个数#include#include//引用stack头文件usingnamespacestd;intmain(){stacks;
cout
代码续发
·
2024-02-20 04:00
小白进阶
算法
pair的用法
定义pairp1;//只是定义make_pair("erfds",5);//通过函数初始化pairp2("qwer",4);//定义并初始化访问通过first与second分别访问pair中的元素
cout
代码续发
·
2024-02-20 04:00
小白进阶
算法
c++
数据结构
洛谷 P6546 [COCI2010-2011#2] PUŽ
讲解:首先还是正常输入:inta,b,v;cin>>a>>b>>v;然后经入一个函数num:
cout
<
126wkw2024
·
2024-02-20 02:20
算法
c++
c语言
模拟
数学
C++ 得到map中最后一个元素
mapmapStudent;mapStudent[1]="3";mapStudent[2]="5";mapStudent[3]="1";autoiter1=mapStudent.end();//正确iter1--;
cout
second
白开水。
·
2024-02-20 01:45
c++
94 C++对象模型探索。对象构造语义学 - 继承体系下的对象构造步骤
构造顺序,这里主要是学习方法,有了方法后,在遇见后面复杂的case下可以自己debug//通过反汇编观察classTeacher28grandpa{public:Teacher28grandpa(){
cout
virfunc
hunandede
·
2024-02-20 00:22
c++
开发语言
4.函数模板的局限性
#includeusingnamespacestd;templatevoidCompare(T&a,T&b){if(a==b){
cout
b){
cout
b"#includeusingnamespacestd
Yuga...
·
2024-02-19 23:12
STL学习笔记
c++
算法
开发语言
5.类模板
templateclassPerson{public:Person(NameTypename,AgeTypeage){this->Myname=name;this->Myage=age;}voidShowPerson(){
cout
MynameMyagep1
Yuga...
·
2024-02-19 23:12
STL学习笔记
c++
算法
开发语言
3.普通函数与函数模板的调用规则
如果函数模板可以产生更好的匹配,优先调用函数模板(1).如果函数模板和普通函数都可以实现,优先调用普通函数#includeusingnamespacestd;//普通函数voidPrint(inta,intb){
cout
voidPrint
Yuga...
·
2024-02-19 23:11
STL学习笔记
c++
算法
开发语言
(AtCoder Beginner Contest 341)(A - D)
AtCoderBeginnerContest341)A.Print341模拟就好了,先放一个1,然后放n个01;#include#defineIOSios::sync_with_stdio(0);cin.tie(0);
cout
.tie
ros275229
·
2024-02-19 22:57
atcoder
算法学习
atcoder
算法
c++
23 标签联合
Variant提供了比union更好的类型安全,其行为如下#include"variant.hpp"#include#includeintmain(){Variantv(42);if(v.is())std::
cout
奇点创客
·
2024-02-19 21:23
QT软件实习笔记2
structStudent{intid;charname[41];intage;intscores[3];friendostream&operator>(istream&in,Student&obj){
cout
邶梓鸭~
·
2024-02-19 19:46
qt
笔记
数据库
学习
QT软件实习笔记1
2024.1.13上午1.课堂练习一键盘上输入一个人的年龄,并且输出;用自己习惯的开发环境#includeintmain(){intage;std::
cout
>age;std::
cout
3.变量命名时,
邶梓鸭~
·
2024-02-19 19:15
笔记
qt
软件工程
2024.2.18 C++&&QT 作业
#includeusingnamespacestd;classAnimal{public:virtualvoidperform(){
cout
perform();animal2->perform()
Carl余
·
2024-02-19 19:11
c++
开发语言
C++题目打卡2.18
ans2+=a:ans1+=a);
cout
usi
EthanWYC601
·
2024-02-19 18:43
c++
开发语言
C++20新规大揭秘:编程的未来已来!
不再为头文件的冗余和循环包含而头痛,让我们看一个简单的例子://以模块的形式导入头文件import;//使用模块中的函数intmain(){std::
cout
conce
胖头鱼不吃鱼-
·
2024-02-19 15:12
c++20
C++学习Day06之继承中的构造与析构
程序及输出1.1构造、析构顺序先调用父类构造,再调用其他成员构造,再调用自身构造,析构的顺序与构造相反#includeusingnamespacestd;classBase1{public:Base1(){
cout
usingnamespacestd
似霰
·
2024-02-19 13:17
C++
c++
学习
开发语言
数据输入时,数据的类型不匹配
intb=0;intc=0;
cout
>a
Austin_1024
·
2024-02-19 13:27
c++
C++DAY1
试编程提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数要求使用C++风格字符串完成#includeusingnamespacestd;intmain(){stringarr;
cout
m0_zrr
·
2024-02-19 13:18
c++
开发语言
C++类和对象-多态->多态的基本语法、多态的原理剖析、纯虚函数和抽象类、虚析构和纯虚析构
virtualvoidspeak(){
cout
usingnamespacestd;//纯虚函数和抽象类classBase{public://纯虚函数//类中只要有一个纯虚
�西瓜�
·
2024-02-19 12:42
c++
开发语言
visualstudio
C++类和对象-C++对象模型和this指针->成员变量和成员函数分开存储、this指针概念、空指针访问成员函数、const修饰成员函数
public:Person(){mA=0;}//非静态成员变量占对象空间intmA;//静态成员变量不占对象空间staticintmB;//函数也不占对象空间,所有函数共享一个函数实例voidfunc(){
cout
mAusingnamespacestd
�西瓜�
·
2024-02-19 12:12
c++
开发语言
visualstudio
C++,stl,常用遍历查找算法
findfind_ifadjacent_findbinary_searchcountcount_if1.常用遍历算法for_each#includeusingnamespacestd;voidprint(intv){
cout
v
柏箱
·
2024-02-19 12:11
C++STL
c++
开发语言
stl
遍历算法
查找算法
C++:this指针(二)
指针:classDate{public:voidInit(intyear,intmonth,intday){_year=year;_month=month;_day=day;}voidPrint(){
cout
PrintA
凤 曦
·
2024-02-19 11:01
C++
c++
开发语言
【C++】32 初探C++标准库 operator 关键字 C语言兼容库
cout
cin
例:#include"stdio.h"classconsole{public:voidoperator#include#include#includeusingnamespacestd;intmain(){printf("Helloworld!\n");char*p=(char*)malloc(16);strcpy(p,"D.T.Software");printf("%s\n",p);double
·
2024-02-19 10:17
c++
armadillo matlab,Armadillo之计算矩阵的行列式(determinant)
方法或是log_det方法1det(A)如果A不是方阵的(square),将抛出std::logic_error异常例:matm="3,2,4;1,-2,3;2,3,2;";doubled=det(m);
cout
三七二十
·
2024-02-15 09:07
armadillo
matlab
类与结构体(6)
常用的变量和inline差不多,但应用于变量)৹static(函数调用之间保持局部变量的值)就像这样:#includeusingnamespacestd;voidout(){staticinti=0;
cout
EthanWYC601
·
2024-02-15 08:35
算法
c++
数据结构
AtCoder Beginner Contest 338(A~E补题)
i)#definelsp#definelllonglong#defineullunsignedlonglong#definedbdouble#defineendl'\n'#definedebug(a)
cout
wa的一声哭了
·
2024-02-15 07:34
atcode
算法
数据结构
mybatis
django
java
eclipse
spring
boot
【编程题】合法括号的判断
=0){returnfalse;}stackst;autoch=A.begin();//
cout
st;autoch=A.begin();//
cout
st;for(autoch:A){switch(ch)
那个楠人
·
2024-02-15 05:30
学习
C++语句汇总(逐渐补充版)(小白友好型)
一、基本语句1.通用体#includeusingnamespacestd;intmain(){
cout
usingnamespacestd;intmain(){
cout
usingnamespacestd;
山楂橙子
·
2024-02-15 04:10
速查
C/C++
c++
开发语言
算法
c语言
牛客周赛 29
小红大战小紫B小红的白日梦C小红的小小红D小红的中位数E小红构造数组A小红大战小紫语法题#includeusingnamespacestd;intmain(){inta,b;cin>>a>>b;if(a==b)
cout
b
十字星的约定_
·
2024-02-15 02:38
算法
算法
c++
数据结构
牛客周赛 Round 28
includeusingnamespacestd;intmain(){ intx; intsum=0; for(inti=0;i>x; sum+=x; }
cout
usingnamespacestd
2301_78574448
·
2024-02-15 02:37
算法
c++
数据结构
C++入门学习(二十六)for循环
include//需要包含这个头文件来使用setw和其他格式化输出功能usingnamespacestd;intmain(){for(inti=1;i<=9;++i){for(intj=1;j<=i;++j){
cout
执沐
·
2024-02-15 01:54
C++入门
学习
C++入门学习(二十七)跳转语句—break语句
、与switch语句联合使用C++入门学习(二十三)选择结构-switch语句-CSDN博客#include#includeusingnamespacestd;intmain(){intnumber;
cout
执沐
·
2024-02-15 01:54
C++入门
前端
javascript
数据库
shared_ptr放入vector,要及时clear,避免内存泄漏
下面简化一下这个问题,直接看代码:#include#include#includeusingnamespacestd;intmain(){shared_ptra1(newint(1));
cout
>v1;
见牛羊
·
2024-02-14 22:12
C++小技巧
c++
C++中如何声明并定义全局变量
方法一://全局变量的声明和定义intglobalVariable=42;//初始化全局变量//示例函数,可以访问全局变量voidprintGlobalVariable(){std::
cout
<<"ThevalueofglobalVariableis
kfjh
·
2024-02-14 22:25
c++
2.6 第五章 静态成员与友元
:staticintnum;public:Test(int);voidshow();};intTest::num=5;Test::Test(intn){num=n;}voidTest::show(){
cout
usin
⠀
·
2024-02-14 20:19
c++
算法
开发语言
深度优先搜索hnust-oj
intmain(){Graphg;CreateUDG(g);DFSTraverse(g);
cout
#include#includeusingnamespacestd;#defineMVNum100//
久长愿长久
·
2024-02-14 14:47
笔记
深度优先
c++
算法
数据结构
打印ASCII码
用例输入1A用例输出165代码#include//头文件调用usingnamespacestd;intmain(){chara;intb;cin>>a;b=(int)a;
cout
<<
2401_82881310
·
2024-02-14 14:36
c++
算法
开发语言
C++读书笔记:基本的输入输出
该文件定义了cin、
cout
、cerr和clog对象,分别对应于标准输入流、标准输出流、非缓冲标准错误流和缓冲标准错误流。该文件通过所谓的参数化的流操纵器(比如setw
codeman-math
·
2024-02-14 13:41
c++
编程语言
C++学习笔记1:输入输出、类简介
输入输出标准库提供输入输出#include输入:std::cin>>输入内容存储的变量>>输入运算符接受一个istream作为其左侧运算对象,接受一个对象作为其右侧运算对象输出:std::
cout
>value
青冰墨
·
2024-02-14 13:11
C++基础笔记
c++
学习
开发语言
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
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
其他