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
数据结构——链式栈
采用链式存储的方式来构建栈#includeusing
namespace
std;#defineElementTypeinttypedefstructLinkNode{ElementTypedata;structLinkNode
努力编程的阿曼
·
2024-01-25 18:36
数据结构
栈
C++ Qt day1
提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数(要求使用C++风格字符串完成)#include#include#includeusing
namespace
std
心若向阳,何惧悲伤
·
2024-01-25 16:08
嵌入式学习-C++
Qt
c++
qt
开发语言
c# MathNet.Numerics 二次函数拟合使用案例
usingMathNet.Numerics;usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;
namespace
Ma
Byron Loong
·
2024-01-25 16:40
算法
c#
算法
Kubernetes Pod(调度)和Pod控制器
第一部分:Pod在Kubernetes中,Pod代表的是集群上处于运行状态的一组【容器】的集合创建并运行Pod(不推荐直接通过Pod运行容器)kubectlrun--image=--port=--
namespace
大能嘚吧嘚
·
2024-01-25 15:14
Kubernetes
kubernetes
浅谈STL中的vector
如何使用:#includeusing
namespace
std;vecto
追梦少年ML
·
2024-01-25 15:59
STL
排序&二分
快速排序#include#includeusing
namespace
std;constintN=1e6+10;intn;intq[N];voidquick_sort(intq[],intl,intr){
yiyeyeshenlan
·
2024-01-25 14:53
算法
考研机试 剩下的树
剩下的树有一个长度为整数L(1#include#includeusing
namespace
std;intmain(){intl,m,b,e;intsum=0;scanf("%d%d",&l,&m);vectorvector
梦芸.
·
2024-01-25 14:11
考研
算法
c++
数据结构
完数VS盈数
完数VS盈数用到了vector用于存放所有完数和盈数#include#include#includeusing
namespace
std;intcountsum(intn){intsum=0;for(inti
梦芸.
·
2024-01-25 14:11
算法
数据结构
c++
寒假刷题第14天
PTA甲级1089InsertorMerge插入排序:前半部分有序后半部分无序归并排序:每一个小序列是有序的#include#include#includeusing
namespace
std;intn;
xp_xht123
·
2024-01-25 14:06
寒假刷题
排序算法
数据结构
算法
团队合作该怎么封装类(c++)可参考
#ifndef__MY_QT_PLOT_WIN_H___#define__MY_QT_PLOT_WIN_H___#include#include"my_qt_utility.h"
namespace
MY{
mengzhi啊
·
2024-01-25 14:21
c++
开发语言
华为机试 - HJ8 合并表记录
提示:0#include#include#includeusing
namespace
std;intmain(){inti,j,n,s,t,u,tmp1,tmp2;inta[501][5];intb[501
水牛不喝水
·
2024-01-25 13:14
算法训练02-就业备战
华为
C++中的引用详解
.引用在初始化后就不可改变3.引用做函数参数4.引用做函数返回值1.不要返回局部变量的引用2.函数调用作为左值5.引用的本质6.常量引用1.引用是什么引用就是给一个变量起别名#includeusing
namespace
std
柏箱
·
2024-01-25 12:29
c++
开发语言
引用
引用的本质
循环双向链表(C++)
这是一个带有空头结点和空尾结点的循环双向链表c++实现#includeusing
namespace
std;classDoubleLinkedList{private:structNode{intdata
_xian_
·
2024-01-25 12:57
链表
c++
数据结构
算法
C++实现双链表和双向循环链表和静态链表
#pragmaonce#includeusing
namespace
std;//静态链表---一维数组#defineMAXSIZE201//静态链表的大小---0不存放数据从下标一开始存放数据enumNODEUSE
随便问玩玩啊哈
·
2024-01-25 12:25
c++
链表
数据结构
双向循环链表C++
具体概念可以参考数据结构与算法等诸多书籍1.双向循环链表基本操作的实现.hpp#pragmaonce#includeusing
namespace
std;constintERROR=0;constintOK
Worthwhile_HUST
·
2024-01-25 12:24
数据结构
C++
链表
c++
数据结构
蓝桥备战-区间嵌套--前缀和做法
代码:#include#includeusing
namespace
std;typedefpairPI
青茶绿梅*2
·
2024-01-25 11:07
算法
蓝桥备战--分糖果OJ2928 贪心 分类讨论
题目:思路:首先排序(经验之谈)分类讨论我们要做到不重不漏的分类代码:#include#includeusing
namespace
std;constintN=1e6+10;chardist[N];intn
青茶绿梅*2
·
2024-01-25 11:07
算法
蓝桥--鸡哥的购物挑战OJ(4169)
(右下的选择方式写错了是最小的那个>0的数不选)AC代码(我的代码可能不比别人简洁,但是我觉得是最好搞懂的了,可能也是太笨了):#include#includeusing
namespace
std;typedeflonglongLL
青茶绿梅*2
·
2024-01-25 11:07
算法
基于贪心算法的区间问题
#include#include#includeusing
namespace
std;constintmaxn=1005;typedefpairP;Pa[maxn];voidsolve(intn){
คิดถึง643
·
2024-01-25 11:00
贪心算法
算法
c++
区间覆盖(贪心算法)
问题描述数轴上有n(1#includeusing
namespace
std;structTT{intx,y;};boolcmp(TTa,TTb){returna.x
YingMila
·
2024-01-25 11:55
算法
贪心算法
c++
类与对象 第二部分第四小节:构造函数的调用规则
前置参数using
namespace
std;classperson{public:person()//创建无参构造函数{coutusing
namespace
std;classperson{public:
陈天白
·
2024-01-25 11:08
c++
程序人生
开发语言
类和对象 第二部分第五小节:深拷贝和浅拷贝
浅拷贝:简单的赋值拷贝操作例如:系统中的拷贝构造函数就是浅拷贝,仅赋值,但地址没有复制,指向的还是同一片地址#includeusing
namespace
std;classperson{public:person
陈天白
·
2024-01-25 11:08
#
C++核心编程
c++
算法
开发语言
类和对象:第二部分第三小节 拷贝构造函数的调用时机
C++中拷贝构造函数的时机通常有三种情况前置对象:#includeusing
namespace
std;classperson{public:person()//创建无参构造函数{cout<<"构造函数调用
陈天白
·
2024-01-25 11:07
#
C++核心编程
c++
开发语言
程序人生
直接插入排序(c++
#include#includeusing
namespace
std;voidInsertSort(vector&vec){inti;for(i=0;i=0){if(vec[j]>=temp){vec[j
小雪冰️
·
2024-01-25 09:09
算法
数据结构
希尔排序(c++
#include#includeusing
namespace
std;voidShellSort(vector&vec){inti,gap=vec.size();while(gap>1){gap/=2;for
小雪冰️
·
2024-01-25 09:05
c++
算法
数据结构
201903CSPT5 317号子任务
#includeusing
namespace
std;structNode{intw;intv;Node(intw,intv):v(v),w(w){}};structnode{intu;intd;bool
wly127
·
2024-01-25 09:05
CSP
图论
算法
c++文件操作(2)-- 按照指定格式读写文件
#include#include#include#include#includeusing
namespace
std;intmain(void){ofstreamio
Sun。13
·
2024-01-25 09:34
c++
开发语言
redis的c++ 客户端 redis-plus-plus
多线程不安全,要想多线程使用就得维护一个对象池,使用起来比较麻烦//redis.hpp#include#include#include#include#include#include#includeusing
namespace
std
阿康不会敲代码
·
2024-01-25 09:04
c++
redis
c++
数据库
C++静态类型成员变量的初始化顺序(单例模式)
对编译器来说,静态成员变量的初始化顺序和析构顺序是一个未定义的行为#include#includeusing
namespace
std;classBase{public:staticintb;staticinta
阿康不会敲代码
·
2024-01-25 09:04
c++
力扣:58. 最后一个单词的长度
#include#includeusing
namespace
std;classSolution{public:intlengthOfLastWord(strings){intindex=s.size()
沙琪玛666
·
2024-01-25 09:03
力扣
c++
leetcode
算法
职场和发展
C++语言程序设计之类和对象进阶(3)
1.1.1设计代码#include#include#includeusing
namespace
std;classCCar;//提前声明CCar类,以便后面的CDriver类使用classCDriver{
BraveTomato
·
2024-01-25 09:05
C++程序设计
c++
开发语言
算法
图像处理:dither
#include#includeusing
namespace
std;using
namespace
cv;intmain(){Matimg_gray0=imread("xjj.jpg",IMREAD_GRAYSCALE
六月的翅膀
·
2024-01-25 08:23
C++
opencv
图像处理
c++
opencv
已知贝塞尔曲线上的点求控制点
#include#include#include#includeusing
namespace
std;using
namespace
cv;vectororig_point;vectorcontrol_point
六月的翅膀
·
2024-01-25 08:52
C++
数学
opencv
opencv
Uva(11549)(Calculator Conundrum)
不然的话最大值就根本没法确定了,具体证明暂时没想到但很容易猜到,既然循环,自然而然想到应该用一个set来判断是否重复,于是很容易写出如下的循环版本代码:#include#include#include#includeusing
namespace
std
kimoyami
·
2024-01-25 07:04
CKS考试心得
题目:第一题:Secret1、在
namespace
istio-system中获取名为db1-test的现有secret的内容,将use
一昂young
·
2024-01-25 07:16
Kubernetes
java
数据库
开发语言
2021-11-13
杭电2052#includeusing
namespace
std;intmain(){intn,m;while(cin>>n>>m){cout<<"+";for(inti=0;i
无畏@
·
2024-01-25 07:11
笔记
24.1.24 DAY1 C++
思维导图:1.提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数,要求使用C++风格字符串完成代码:#include#includeusing
namespace
std
_xia_12345678
·
2024-01-25 06:50
c++
算法
开发语言
C# DLL嵌套调用时修改生效
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;
namespace
ClassLibrary1
布伦鸽
·
2024-01-25 06:04
c#
开发语言
C++(11):反复调用,call_once保证只能被执行一次
call_once在反复被调用时,也可以确保只被调用一次:#include#include#include#includeusing
namespace
std;unsignedlonggetTime(){
风静如云
·
2024-01-25 05:28
C/C++
c++
C++ day1
提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数,要求使用C++风格字符串完成#include#includeusing
namespace
std;intmain(
fj199121
·
2024-01-25 04:30
c++
蓝桥杯——数列排序
题目:解题过程(C++)//最常见的一种排序——冒泡排序#includeusing
namespace
std;intmain(){intn;cin>>n;int*a=newint[n];//一维动态数组for
m0_64572251
·
2024-01-25 03:32
蓝桥杯
c++
算法
数列排序——模拟
输入第一行是一个整数,代表数字个数n(1≤n≤1e5).第二行有n个整数用空格分隔开,表示数列a(−2e31using
namespace
std;#defineintlonglong#defineendl
OLDERHARD
·
2024-01-25 03:31
算法
数据结构
01 质数筛
一、根据概念进行枚举1、判断质数的枚举算法根据概念:除了1和它本身以外没有其他约数的数为质数//输入一个数n,判断n是不是质数#includeusing
namespace
std;intmain(){intn
xuqw11111
·
2024-01-25 03:48
03
算法竞赛—进阶指南
算法
02 分解质因子
一、数n的质因子分解题目描述:输入一个数n(nusing
namespace
std;constintN=1e6;intprime[N],idx;boolst[N];voidinit(){for(inti=
xuqw11111
·
2024-01-25 03:14
03
算法竞赛—进阶指南
算法
c++
数据结构
(C++)输入/输出流
文件输入流,将内容存储到文件中;相当于fstream调用write();//ofstream文件输出流,将文件内容输出,调入内存;相当于fstream调用read();2、标准输入流#includeusing
namespace
st
充满热情的常春藤叶
·
2024-01-25 02:37
C++
c++
蓝桥杯
开发语言
c++中的流输入与输出
看下面的程序#includeusing
namespace
std;intmain(){inta=100;cin>>a;coutusing
namespace
std;intmain(){constintchar_array_size
LyaJpunov
·
2024-01-25 02:07
c++
c++
算法
c语言
找到给定字符串的不同字符
代码:#include#includeusing
namespace
std;intmain(){strings1,s2;cin>>s1>>s2;maph;for(autob:s1){h[b]++;}for
fchampion
·
2024-01-25 02:35
c++
算法
开发语言
PHP微信小程序订阅消息
PHP微信小程序订阅消息接口
namespace
####use###/***小程序订阅消息*/classSubscribeController{protected$appid;protected$secret
程序小院
·
2024-01-25 01:42
小程序
PHP
订阅
php
微信小程序
notepad++
C++程序设计比赛常用函数总结
目录Stringsetmap全排列函数queuepriority_queuevector编辑stack类型转换String#include#include#include#includeusing
namespace
std
詹小友
·
2024-01-25 01:17
我的随笔
c++
开发语言
算法
洛谷 P1219 [USACO1.5]八皇后 Checker Challenge 题解
做题地址:https://www.luogu.com.cn/problem/solution/P1219这一题是一道dfs问题#include#include#include#includeusing
namespace
std
太阳湖散步
·
2024-01-25 00:07
上一页
43
44
45
46
47
48
49
50
下一页
按字母分类:
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
其他